Note
Go to the end to download the full example code
Sediment drift from Glomma river outlet
from datetime import timedelta, datetime
from opendrift.models.sedimentdrift import SedimentDrift
o = SedimentDrift(loglevel=0) # 0 for debug output
10:52:19 DEBUG opendrift.models.basemodel:625: Adding 18 config items from basemodel
10:52:19 DEBUG opendrift.models.basemodel:625: Adding 6 config items from basemodel
10:52:19 DEBUG opendrift.models.basemodel:625: Adding 26 config items from basemodel
10:52:19 INFO opendrift.models.basemodel:539: OpenDriftSimulation initialised (version 1.10.7 / v1.10.6-106-g85409ec)
10:52:19 DEBUG opendrift.models.basemodel:625: Adding 14 config items from oceandrift
10:52:19 DEBUG opendrift.models.basemodel:637: Overwriting config item seed:z
10:52:19 DEBUG opendrift.models.basemodel:625: Adding 1 config items from sedimentdrift
Source of sediments at Glomma river outlet
lat=59.169194
lon=10.962920
o.seed_elements(lon=lon, lat=lat, number=10000,
time=[datetime.utcnow(), datetime.utcnow()+timedelta(hours=48)],
terminal_velocity=-.001) # 1 mm/s settling speed
if False: # Using constant south-westwards current and wind
o.set_config('environment:fallback:x_sea_water_velocity', -.05)
o.set_config('environment:fallback:y_sea_water_velocity', -.1)
o.set_config('environment:fallback:y_wind', -6)
o.set_config('environment:fallback:x_wind', -2)
o.set_config('environment:fallback:sea_floor_depth_below_sea_level', 100) # 100m depth
else: # Using live data from Thredds
o.add_readers_from_list([
'https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be'])
10:52:19 DEBUG opendrift.readers.reader_lazy:32: Delaying initialisation of LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:19 DEBUG opendrift.models.basemodel:952: Added reader LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
Adding some diffusion
o.set_config('drift:current_uncertainty', .2)
o.set_config('drift:wind_uncertainty', 2)
o.set_config('vertical_mixing:diffusivitymodel', 'windspeed_Large1994')
#o.set_config('vertical_mixing:diffusivitymodel', 'environment')
o.run(time_step=600, time_step_output=1800, duration=timedelta(hours=36))
10:52:19 DEBUG opendrift.models.basemodel:2545:
------------------------------------------------------
Software and hardware:
OpenDrift version 1.10.7
Platform: Linux, 5.15.0-1039-aws
68.56807327270508 GB memory
36 processors (x86_64)
NumPy version 1.25.2
SciPy version 1.11.2
Matplotlib version 3.7.2
NetCDF4 version 1.6.1
Xarray version 2023.8.0
Python version 3.11.4 | packaged by conda-forge | (main, Jun 10 2023, 18:08:17) [GCC 12.2.0]
------------------------------------------------------
10:52:19 DEBUG opendrift.models.basemodel:2562: No output file is specified, neglecting export_buffer_length
10:52:19 INFO opendrift.models.basemodel:2591: Fallback values will be used for the following variables which have no readers:
10:52:19 INFO opendrift.models.basemodel:2594: x_sea_water_velocity: 0.000000
10:52:19 INFO opendrift.models.basemodel:2594: y_sea_water_velocity: 0.000000
10:52:19 INFO opendrift.models.basemodel:2594: upward_sea_water_velocity: 0.000000
10:52:19 INFO opendrift.models.basemodel:2594: x_wind: 0.000000
10:52:19 INFO opendrift.models.basemodel:2594: y_wind: 0.000000
10:52:19 INFO opendrift.models.basemodel:2594: sea_surface_wave_stokes_drift_x_velocity: 0.000000
10:52:19 INFO opendrift.models.basemodel:2594: sea_surface_wave_stokes_drift_y_velocity: 0.000000
10:52:19 INFO opendrift.models.basemodel:2594: sea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000
10:52:19 INFO opendrift.models.basemodel:2594: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000
10:52:19 INFO opendrift.models.basemodel:2594: ocean_vertical_diffusivity: 0.020000
10:52:19 INFO opendrift.models.basemodel:2594: ocean_mixed_layer_thickness: 50.000000
10:52:19 INFO opendrift.models.basemodel:2594: sea_floor_depth_below_sea_level: 10000.000000
10:52:19 DEBUG opendrift.models.basemodel:2718: Preparing readers for simulation coverage ([8.684760182679899, 58.0016257002547, 13.241080195127719, 60.33676083538983]) and time (2023-08-21 10:52:19.552469 to 2023-08-22 22:52:19.552469)
10:52:19 DEBUG opendrift.models.basemodel:2722: Preparing LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:19 INFO opendrift.models.basemodel:2753: Adding a dynamical landmask with max. priority based on assumed maximum speed of 1 m/s. Adding a customised landmask may be faster...
10:52:19 DEBUG opendrift.readers.basereader:176: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
10:52:25 DEBUG opendrift.models.basemodel:952: Added reader global_landmask
10:52:25 INFO opendrift.models.basemodel:1701: Using existing reader for land_binary_mask
10:52:25 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:25 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:52:25 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:25 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:52:25 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:25 DEBUG opendrift.models.basemodel:1253: Data needed for 10000 elements
10:52:25 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:52:25 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:52:25 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:52:25 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:52:25 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:25 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:25 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:25 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:25 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
10:52:25 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:25 DEBUG opendrift.models.basemodel:1527: 0 active elements
10:52:25 INFO opendrift.models.basemodel:1713: All points are in ocean
10:52:25 DEBUG opendrift.models.basemodel:1658: to be seeded: 10000, already seeded 0
10:52:25 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:52:25 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:52:25 INFO opendrift.models.basemodel:2882: 2023-08-21 10:52:19.552469 - step 1 of 216 - 35 active elements (0 deactivated)
10:52:25 DEBUG opendrift.models.basemodel:2888: 9965 elements scheduled.
10:52:25 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:52:25 DEBUG opendrift.models.basemodel:1205: Variables not covered by any reader: ['sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment', 'x_wind', 'upward_sea_water_velocity', 'y_wind', 'ocean_vertical_diffusivity', 'sea_floor_depth_below_sea_level', 'y_sea_water_velocity', 'x_sea_water_velocity', 'sea_surface_wave_stokes_drift_x_velocity', 'ocean_mixed_layer_thickness', 'sea_surface_wave_stokes_drift_y_velocity', 'sea_surface_wave_period_at_variance_spectral_density_maximum']
10:52:25 DEBUG opendrift.readers.reader_lazy:51: Initialising: LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:25 INFO opendrift.readers.reader_netCDF_CF_generic:92: Opening dataset: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:30 DEBUG opendrift.readers.reader_netCDF_CF_generic:109: Finding coordinate variables.
10:52:30 DEBUG opendrift.readers.reader_netCDF_CF_generic:122: Parsing CF grid mapping dictionary: {'grid_mapping_name': 'polar_stereographic', 'straight_vertical_longitude_from_pole': 70.0, 'latitude_of_projection_origin': 90.0, 'standard_parallel': 60.0, 'false_easting': 3192800.0, 'false_northing': 1784000.0, 'semi_major_axis': 6378137.0, 'semi_minor_axis': 6356752.3142, 'proj4': '+proj=stere +lat_0=90 +lat_ts=60 +lon_0=70 +x_0=3192800 +y_0=1784000 +a=6378137 +b=6356752.3142 +units=m +no_defs +type=crs'}
/opt/conda/envs/opendrift/lib/python3.11/site-packages/pyproj/crs/crs.py:1286: UserWarning: You will likely lose important projection information when converting to a PROJ string from another format. See: https://proj.org/faq.html#what-is-the-best-format-for-describing-coordinate-reference-systems
proj = self._crs.to_proj4(version=version)
10:52:31 DEBUG opendrift.readers.reader_netCDF_CF_generic:310: Skipped variables without standard_name: ['angle', 'tke', 'ubar', 'vbar']
10:52:31 DEBUG opendrift.readers.basereader.variables:558: Setting buffer size 25 for reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be, assuming a maximum average speed of 5 m/s and time span of 1:00:00
10:52:31 DEBUG opendrift.readers.basereader.variables:512: Adding variable mapping: ['x_sea_water_velocity', 'y_sea_water_velocity'] -> current_speed
10:52:31 DEBUG opendrift.readers.basereader:176: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
10:52:31 DEBUG opendrift.readers.basereader.structured:119: Clearing cache for reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be before starting new simulation
10:52:31 DEBUG opendrift.readers.basereader:188: Nothing more to prepare for https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:31 DEBUG opendrift.readers.reader_lazy:58: Reader initialised: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:31 DEBUG opendrift.readers.basereader.variables:558: Setting buffer size 7 for reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be, assuming a maximum average speed of 1 m/s and time span of 1:00:00
10:52:31 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:31 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:52:31 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:31 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:52:31 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:31 DEBUG opendrift.models.basemodel:1253: Data needed for 35 elements
10:52:31 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:52:31 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:52:31 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:52:31 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:52:31 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:31 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:31 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:52:31 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:31 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:31 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:31 DEBUG opendrift.models.basemodel:1253: Data needed for 35 elements
10:52:31 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:31 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 10:00:00 (before)
2023-08-21 11:00:00 (after)
10:52:31 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:52:31 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:52:31 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:52:31 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:52:31 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:52:31 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:52:31 DEBUG opendrift.readers.basereader.structured:253: Fetched env-block (size 14x14x2) for time before (2023-08-21 10:00:00)
10:52:32 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:52:32 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:52:32 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:52:32 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:52:32 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:52:32 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:52:32 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 14x14x2) for time after (2023-08-21 11:00:00)
10:52:32 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 10:00:00) in space (linearNDFast)
10:52:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
/root/project/opendrift/readers/interpolation/interpolators.py:17: RuntimeWarning: overflow encountered in cast
data[mask] = np.finfo(np.float64).min
10:52:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
10:52:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
10:52:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
10:52:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
10:52:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
10:52:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
10:52:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
10:52:32 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 11:00:00) in space (linearNDFast)
10:52:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
10:52:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
10:52:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
10:52:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
10:52:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
10:52:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
10:52:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
10:52:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
10:52:32 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 10:00:00, weight 0.13) and
after (2023-08-21 11:00:00, weight 0.87) in time
10:52:32 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.037089417119375 and -59.037089417119375 degrees.
10:52:32 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.037089417119375 and -59.037089417119375 degrees.
10:52:32 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:32 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:32 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:32 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:52:32 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:52:32 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:32 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: 0.226109 (min) 1.19066 (max)
10:52:32 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.673771 (min) 0.0616409 (max)
10:52:32 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -1.65345e-05 (min) -1.65345e-05 (max)
10:52:32 DEBUG opendrift.models.basemodel:1524: x_wind: 2.91661 (min) 9.78087 (max)
10:52:32 DEBUG opendrift.models.basemodel:1524: y_wind: 1.53818 (min) 7.62423 (max)
10:52:32 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:52:32 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:52:32 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:52:32 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:52:32 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
10:52:32 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:52:32 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:52:32 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.59209 (min) 6.59209 (max)
10:52:32 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:32 DEBUG opendrift.models.basemodel:1527: 35 active elements
10:52:32 DEBUG opendrift.models.basemodel:1536: latitude = 59.169193
10:52:32 DEBUG opendrift.models.basemodel:1541: longitude = 10.96292
10:52:32 DEBUG opendrift.models.basemodel:1546: z = 0.0
10:52:32 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:32 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:52:32 DEBUG opendrift.models.physics_methods:940: min: 3.383047, mean: 6.850791, max: 9.402064
10:52:32 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 3.383047, mean: 6.850791, max: 9.402064
10:52:32 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
10:52:32 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:52:32 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:52:32 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:52:32 DEBUG opendrift.models.oceandrift:366: No vertical advection for elements at surface
10:52:32 DEBUG opendrift.models.physics_methods:741: Advecting 35 of 35 elements above 0.100m with wind-sheared ocean current (0.079185 m/s - 0.220068 m/s)
10:52:32 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:52:32 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:52:32 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.10938681112106323
10:52:32 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:52:32 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:52:32 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:52:32 DEBUG opendrift.models.oceandrift:572: 1 elements penetrated seafloor, lifting up
10:52:32 DEBUG opendrift.models.oceandrift:572: 4 elements penetrated seafloor, lifting up
10:52:32 DEBUG opendrift.models.oceandrift:572: 8 elements penetrated seafloor, lifting up
10:52:32 DEBUG opendrift.models.oceandrift:590: 1 elements reached seafloor, set to bottom
10:52:32 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:32 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
10:52:32 DEBUG opendrift.models.oceandrift:572: 6 elements penetrated seafloor, lifting up
10:52:32 DEBUG opendrift.models.oceandrift:572: 4 elements penetrated seafloor, lifting up
10:52:32 DEBUG opendrift.models.oceandrift:572: 4 elements penetrated seafloor, lifting up
10:52:32 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:52:32 DEBUG opendrift.models.basemodel:2945: 35 active elements (0 deactivated)
10:52:32 DEBUG opendrift.models.basemodel:1658: to be seeded: 9965, already seeded 35
10:52:32 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:52:32 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:32 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:52:32 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:32 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:32 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:32 DEBUG opendrift.models.basemodel:1253: Data needed for 70 elements
10:52:32 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:32 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 11:00:00 (before)
2023-08-21 12:00:00 (after)
10:52:32 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 11:00:00) in space (linearNDFast)
10:52:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:32 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:52:32 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:32 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:32 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:32 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:32 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.58547 (min) 7.13415 (max)
10:52:32 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:32 DEBUG opendrift.models.basemodel:1527: 70 active elements
10:52:32 DEBUG opendrift.models.basemodel:1538: 59.16580262872281 <- latitude -> 59.170339115320274
10:52:32 DEBUG opendrift.models.basemodel:1543: 10.962920188903809 <- longitude -> 10.976816410219715
10:52:32 DEBUG opendrift.models.basemodel:1548: -6.582090129852295 <- z -> 0.0
10:52:32 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:32 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:52:32 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:52:32 INFO opendrift.models.basemodel:2882: 2023-08-21 11:02:19.552469 - step 2 of 216 - 70 active elements (0 deactivated)
10:52:32 DEBUG opendrift.models.basemodel:2888: 9930 elements scheduled.
10:52:32 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:52:32 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:32 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:52:32 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:32 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:52:32 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:32 DEBUG opendrift.models.basemodel:1253: Data needed for 70 elements
10:52:32 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:52:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:52:32 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:52:32 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:52:32 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:32 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:32 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:52:32 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:32 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:32 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:32 DEBUG opendrift.models.basemodel:1253: Data needed for 70 elements
10:52:32 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:32 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 11:00:00 (before)
2023-08-21 12:00:00 (after)
10:52:33 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:52:33 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:52:33 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:52:33 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:52:33 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:52:33 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:52:33 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 15x15x4) for time after (2023-08-21 12:00:00)
10:52:33 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 11:00:00) in space (linearNDFast)
10:52:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:33 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 12:00:00) in space (linearNDFast)
10:52:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
10:52:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
10:52:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
10:52:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
10:52:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
10:52:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
10:52:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 1
10:52:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 1
10:52:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 1
10:52:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 1
10:52:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
10:52:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
10:52:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
10:52:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
10:52:33 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 11:00:00, weight 0.96) and
after (2023-08-21 12:00:00, weight 0.04) in time
10:52:33 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.03709036875388 and -59.023194133438444 degrees.
10:52:33 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.03709036875388 and -59.023194133438444 degrees.
10:52:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:33 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:33 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:33 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:52:33 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:52:33 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:33 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.491141 (min) 1.21737 (max)
10:52:33 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.842479 (min) 0.341214 (max)
10:52:33 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -1.79914e-05 (min) 0.000123821 (max)
10:52:33 DEBUG opendrift.models.basemodel:1524: x_wind: -0.0855041 (min) 10.1409 (max)
10:52:33 DEBUG opendrift.models.basemodel:1524: y_wind: -1.87773 (min) 8.55287 (max)
10:52:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:52:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:52:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:52:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:52:33 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 0 (max)
10:52:33 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:52:33 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:52:33 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.58547 (min) 7.13415 (max)
10:52:33 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:33 DEBUG opendrift.models.basemodel:1527: 70 active elements
10:52:33 DEBUG opendrift.models.basemodel:1538: 59.16580262872281 <- latitude -> 59.170339115320274
10:52:33 DEBUG opendrift.models.basemodel:1543: 10.962920188903809 <- longitude -> 10.976816410219715
10:52:33 DEBUG opendrift.models.basemodel:1548: -6.582090129852295 <- z -> 0.0
10:52:33 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:33 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:52:33 DEBUG opendrift.models.physics_methods:940: min: 1.625262, mean: 5.963455, max: 9.292378
10:52:33 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 1.625262, mean: 5.963455, max: 9.292378
10:52:33 DEBUG opendrift.models.basemodel:811: No elements hit coastline.
10:52:33 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:52:33 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:52:33 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:52:33 DEBUG opendrift.models.physics_methods:741: Advecting 35 of 70 elements above 0.100m with wind-sheared ocean current (0.038041 m/s - 0.205971 m/s)
10:52:33 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:52:33 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:52:33 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.10684955752189636
10:52:33 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:52:33 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:52:33 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:52:33 DEBUG opendrift.models.oceandrift:572: 7 elements penetrated seafloor, lifting up
10:52:33 DEBUG opendrift.models.oceandrift:590: 1 elements reached seafloor, set to bottom
10:52:33 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:33 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
10:52:33 DEBUG opendrift.models.oceandrift:572: 5 elements penetrated seafloor, lifting up
10:52:33 DEBUG opendrift.models.oceandrift:572: 5 elements penetrated seafloor, lifting up
10:52:33 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:33 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:33 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:33 DEBUG opendrift.models.oceandrift:572: 6 elements penetrated seafloor, lifting up
10:52:33 DEBUG opendrift.models.oceandrift:590: 1 elements reached seafloor, set to bottom
10:52:33 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:33 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
10:52:33 DEBUG opendrift.models.oceandrift:572: 3 elements penetrated seafloor, lifting up
10:52:33 DEBUG opendrift.models.oceandrift:572: 2 elements penetrated seafloor, lifting up
10:52:33 DEBUG opendrift.models.oceandrift:572: 4 elements penetrated seafloor, lifting up
10:52:33 DEBUG opendrift.models.oceandrift:572: 4 elements penetrated seafloor, lifting up
10:52:33 DEBUG opendrift.models.oceandrift:572: 5 elements penetrated seafloor, lifting up
10:52:33 DEBUG opendrift.models.oceandrift:572: 4 elements penetrated seafloor, lifting up
10:52:33 DEBUG opendrift.models.oceandrift:590: 1 elements reached seafloor, set to bottom
10:52:33 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:33 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
10:52:33 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:52:33 DEBUG opendrift.models.basemodel:2945: 70 active elements (0 deactivated)
10:52:33 DEBUG opendrift.models.basemodel:1658: to be seeded: 9930, already seeded 70
10:52:33 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:52:33 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:33 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:52:33 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:33 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:33 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:33 DEBUG opendrift.models.basemodel:1253: Data needed for 105 elements
10:52:33 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:33 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 11:00:00 (before)
2023-08-21 12:00:00 (after)
10:52:33 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 11:00:00) in space (linearNDFast)
10:52:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:33 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:52:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:33 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:33 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:33 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:33 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.59204 (min) 7.45648 (max)
10:52:33 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:33 DEBUG opendrift.models.basemodel:1527: 105 active elements
10:52:33 DEBUG opendrift.models.basemodel:1538: 59.16336758243985 <- latitude -> 59.16964303114689
10:52:33 DEBUG opendrift.models.basemodel:1543: 10.962920188903809 <- longitude -> 10.982304813593062
10:52:33 DEBUG opendrift.models.basemodel:1548: -6.880470504760742 <- z -> 0.0
10:52:33 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:33 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:33 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:52:33 INFO opendrift.models.basemodel:2882: 2023-08-21 11:12:19.552469 - step 3 of 216 - 105 active elements (0 deactivated)
10:52:33 DEBUG opendrift.models.basemodel:2888: 9895 elements scheduled.
10:52:33 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:52:33 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:33 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:52:33 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:33 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:52:33 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:33 DEBUG opendrift.models.basemodel:1253: Data needed for 105 elements
10:52:33 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:52:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:52:33 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:52:33 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:52:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:33 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:33 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:52:33 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:33 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:33 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:33 DEBUG opendrift.models.basemodel:1253: Data needed for 105 elements
10:52:33 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:33 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 11:00:00 (before)
2023-08-21 12:00:00 (after)
10:52:34 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:52:34 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:52:34 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:52:34 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:52:34 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:52:34 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:52:34 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 15x16x4) for time after (2023-08-21 12:00:00)
10:52:34 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 11:00:00) in space (linearNDFast)
10:52:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:34 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 12:00:00) in space (linearNDFast)
10:52:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
10:52:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
10:52:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
10:52:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
10:52:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
10:52:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
10:52:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1
10:52:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1
10:52:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1
10:52:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 1
10:52:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
10:52:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
10:52:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
10:52:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
10:52:34 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 11:00:00, weight 0.79) and
after (2023-08-21 12:00:00, weight 0.21) in time
10:52:34 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.03709036875388 and -59.017705730037555 degrees.
10:52:34 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.03709036875388 and -59.017705730037555 degrees.
10:52:34 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:34 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:34 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:34 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:52:34 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:52:34 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:34 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.518621 (min) 1.09279 (max)
10:52:34 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.89244 (min) 0.344265 (max)
10:52:34 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -1.61693e-05 (min) 0.000168037 (max)
10:52:34 DEBUG opendrift.models.basemodel:1524: x_wind: 0.0492593 (min) 11.4276 (max)
10:52:34 DEBUG opendrift.models.basemodel:1524: y_wind: -1.1864 (min) 8.98118 (max)
10:52:34 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:52:34 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:52:34 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:52:34 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:52:34 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:52:34 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:52:34 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:52:34 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.59204 (min) 7.45648 (max)
10:52:34 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:34 DEBUG opendrift.models.basemodel:1527: 105 active elements
10:52:34 DEBUG opendrift.models.basemodel:1538: 59.16336758243985 <- latitude -> 59.16964303114689
10:52:34 DEBUG opendrift.models.basemodel:1543: 10.962920188903809 <- longitude -> 10.982304813593062
10:52:34 DEBUG opendrift.models.basemodel:1548: -6.880470504760742 <- z -> 0.0
10:52:34 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:34 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:52:34 DEBUG opendrift.models.physics_methods:940: min: 2.843715, mean: 6.432135, max: 11.089556
10:52:34 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 2.843715, mean: 6.432135, max: 11.089556
10:52:34 DEBUG opendrift.models.basemodel:813: 6 elements hit coastline, moving back to water
10:52:34 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:52:34 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:52:34 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:52:34 DEBUG opendrift.models.physics_methods:741: Advecting 35 of 105 elements above 0.100m with wind-sheared ocean current (0.085551 m/s - 0.224816 m/s)
10:52:34 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:52:34 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:52:34 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.15217467728622433
10:52:34 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:52:34 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:52:34 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:52:34 DEBUG opendrift.models.oceandrift:572: 3 elements penetrated seafloor, lifting up
10:52:34 DEBUG opendrift.models.oceandrift:590: 1 elements reached seafloor, set to bottom
10:52:34 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:34 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
10:52:34 DEBUG opendrift.models.oceandrift:572: 3 elements penetrated seafloor, lifting up
10:52:34 DEBUG opendrift.models.oceandrift:572: 8 elements penetrated seafloor, lifting up
10:52:34 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:34 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:34 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:34 DEBUG opendrift.models.oceandrift:572: 7 elements penetrated seafloor, lifting up
10:52:34 DEBUG opendrift.models.oceandrift:590: 1 elements reached seafloor, set to bottom
10:52:34 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:34 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
10:52:34 DEBUG opendrift.models.oceandrift:572: 8 elements penetrated seafloor, lifting up
10:52:34 DEBUG opendrift.models.oceandrift:590: 1 elements reached seafloor, set to bottom
10:52:34 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:34 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
10:52:34 DEBUG opendrift.models.oceandrift:572: 4 elements penetrated seafloor, lifting up
10:52:34 DEBUG opendrift.models.oceandrift:590: 1 elements reached seafloor, set to bottom
10:52:34 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:34 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
10:52:34 DEBUG opendrift.models.oceandrift:572: 8 elements penetrated seafloor, lifting up
10:52:34 DEBUG opendrift.models.oceandrift:590: 1 elements reached seafloor, set to bottom
10:52:34 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:34 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
10:52:34 DEBUG opendrift.models.oceandrift:572: 11 elements penetrated seafloor, lifting up
10:52:34 DEBUG opendrift.models.oceandrift:572: 9 elements penetrated seafloor, lifting up
10:52:34 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:34 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:34 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:34 DEBUG opendrift.models.oceandrift:572: 8 elements penetrated seafloor, lifting up
10:52:34 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:52:34 DEBUG opendrift.models.basemodel:2945: 105 active elements (0 deactivated)
10:52:34 DEBUG opendrift.models.basemodel:1658: to be seeded: 9895, already seeded 105
10:52:34 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:52:34 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:34 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:52:34 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:34 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:34 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:34 DEBUG opendrift.models.basemodel:1253: Data needed for 139 elements
10:52:34 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:34 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 11:00:00 (before)
2023-08-21 12:00:00 (after)
10:52:34 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 11:00:00) in space (linearNDFast)
10:52:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:34 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:52:34 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:34 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:34 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:34 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:34 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.55764 (min) 7.59207 (max)
10:52:34 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:34 DEBUG opendrift.models.basemodel:1527: 139 active elements
10:52:34 DEBUG opendrift.models.basemodel:1538: 59.16212428974256 <- latitude -> 59.17068054816774
10:52:34 DEBUG opendrift.models.basemodel:1543: 10.962920188903809 <- longitude -> 10.987751217780394
10:52:34 DEBUG opendrift.models.basemodel:1548: -7.21093677520752 <- z -> 0.0
10:52:34 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:34 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:34 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:52:34 INFO opendrift.models.basemodel:2882: 2023-08-21 11:22:19.552469 - step 4 of 216 - 139 active elements (0 deactivated)
10:52:34 DEBUG opendrift.models.basemodel:2888: 9861 elements scheduled.
10:52:34 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:52:34 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:34 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:52:34 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:34 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:52:34 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:34 DEBUG opendrift.models.basemodel:1253: Data needed for 139 elements
10:52:34 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:52:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:52:34 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:52:34 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:52:34 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:34 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:34 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:52:34 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:34 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:34 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:34 DEBUG opendrift.models.basemodel:1253: Data needed for 139 elements
10:52:34 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:34 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 11:00:00 (before)
2023-08-21 12:00:00 (after)
10:52:35 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:52:35 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:52:35 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:52:35 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:52:35 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:52:35 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:52:35 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 15x16x4) for time after (2023-08-21 12:00:00)
10:52:35 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 11:00:00) in space (linearNDFast)
10:52:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:35 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 12:00:00) in space (linearNDFast)
10:52:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 1
10:52:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 1
10:52:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
10:52:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
10:52:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
10:52:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
10:52:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 1
10:52:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 1
10:52:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 1
10:52:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 1
10:52:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 1
10:52:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 1
10:52:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 1
10:52:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 1
10:52:35 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 11:00:00, weight 0.63) and
after (2023-08-21 12:00:00, weight 0.37) in time
10:52:35 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.03709036875388 and -59.01225933455633 degrees.
10:52:35 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.03709036875388 and -59.01225933455633 degrees.
10:52:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:35 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:35 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:35 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:52:35 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:52:35 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:35 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.377359 (min) 1.13162 (max)
10:52:35 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.79059 (min) 0.27901 (max)
10:52:35 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -3.13063e-05 (min) 0.000123787 (max)
10:52:35 DEBUG opendrift.models.basemodel:1524: x_wind: 1.35041 (min) 10.6925 (max)
10:52:35 DEBUG opendrift.models.basemodel:1524: y_wind: -1.65446 (min) 8.68733 (max)
10:52:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:52:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:52:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:52:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:52:35 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:52:35 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:52:35 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:52:35 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.55764 (min) 7.59207 (max)
10:52:35 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:35 DEBUG opendrift.models.basemodel:1527: 139 active elements
10:52:35 DEBUG opendrift.models.basemodel:1538: 59.16212428974256 <- latitude -> 59.17068054816774
10:52:35 DEBUG opendrift.models.basemodel:1543: 10.962920188903809 <- longitude -> 10.987751217780394
10:52:35 DEBUG opendrift.models.basemodel:1548: -7.21093677520752 <- z -> 0.0
10:52:35 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:35 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:52:35 DEBUG opendrift.models.physics_methods:940: min: 1.692324, mean: 6.161266, max: 11.001642
10:52:35 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 1.692324, mean: 6.161266, max: 11.001642
10:52:35 DEBUG opendrift.models.basemodel:813: 12 elements hit coastline, moving back to water
10:52:35 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:52:35 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:52:35 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:52:35 DEBUG opendrift.models.physics_methods:741: Advecting 34 of 139 elements above 0.100m with wind-sheared ocean current (0.039679 m/s - 0.214501 m/s)
10:52:35 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:52:35 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:52:35 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.14977151624210355
10:52:35 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:52:35 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:52:35 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:52:35 DEBUG opendrift.models.oceandrift:572: 18 elements penetrated seafloor, lifting up
10:52:35 DEBUG opendrift.models.oceandrift:590: 1 elements reached seafloor, set to bottom
10:52:35 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:35 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
10:52:35 DEBUG opendrift.models.oceandrift:572: 21 elements penetrated seafloor, lifting up
10:52:35 DEBUG opendrift.models.oceandrift:590: 1 elements reached seafloor, set to bottom
10:52:35 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:35 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
10:52:35 DEBUG opendrift.models.oceandrift:572: 13 elements penetrated seafloor, lifting up
10:52:35 DEBUG opendrift.models.oceandrift:572: 11 elements penetrated seafloor, lifting up
10:52:35 DEBUG opendrift.models.oceandrift:572: 17 elements penetrated seafloor, lifting up
10:52:35 DEBUG opendrift.models.oceandrift:590: 1 elements reached seafloor, set to bottom
10:52:35 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:35 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
10:52:35 DEBUG opendrift.models.oceandrift:572: 14 elements penetrated seafloor, lifting up
10:52:35 DEBUG opendrift.models.oceandrift:590: 1 elements reached seafloor, set to bottom
10:52:35 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:35 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
10:52:35 DEBUG opendrift.models.oceandrift:572: 19 elements penetrated seafloor, lifting up
10:52:35 DEBUG opendrift.models.oceandrift:590: 1 elements reached seafloor, set to bottom
10:52:35 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:35 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
10:52:35 DEBUG opendrift.models.oceandrift:572: 22 elements penetrated seafloor, lifting up
10:52:35 DEBUG opendrift.models.oceandrift:590: 1 elements reached seafloor, set to bottom
10:52:35 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:35 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
10:52:35 DEBUG opendrift.models.oceandrift:572: 15 elements penetrated seafloor, lifting up
10:52:35 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:35 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:35 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:35 DEBUG opendrift.models.oceandrift:572: 25 elements penetrated seafloor, lifting up
10:52:35 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:52:35 DEBUG opendrift.models.basemodel:2945: 139 active elements (0 deactivated)
10:52:35 DEBUG opendrift.models.basemodel:1658: to be seeded: 9861, already seeded 139
10:52:35 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:52:35 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:35 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:52:35 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:35 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:35 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:35 DEBUG opendrift.models.basemodel:1253: Data needed for 174 elements
10:52:35 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:35 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 11:00:00 (before)
2023-08-21 12:00:00 (after)
10:52:35 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 11:00:00) in space (linearNDFast)
10:52:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:35 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:52:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:35 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:35 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:35 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:35 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.59204 (min) 7.82779 (max)
10:52:35 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:35 DEBUG opendrift.models.basemodel:1527: 174 active elements
10:52:35 DEBUG opendrift.models.basemodel:1538: 59.160076706823546 <- latitude -> 59.16983414300394
10:52:35 DEBUG opendrift.models.basemodel:1543: 10.962338595039105 <- longitude -> 10.988875429740673
10:52:35 DEBUG opendrift.models.basemodel:1548: -7.4044189453125 <- z -> 0.0
10:52:35 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:35 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:52:35 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:52:35 INFO opendrift.models.basemodel:2882: 2023-08-21 11:32:19.552469 - step 5 of 216 - 174 active elements (0 deactivated)
10:52:35 DEBUG opendrift.models.basemodel:2888: 9826 elements scheduled.
10:52:35 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:52:35 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:35 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:52:35 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:35 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:52:35 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:35 DEBUG opendrift.models.basemodel:1253: Data needed for 174 elements
10:52:35 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:52:35 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:52:35 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:52:35 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:52:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:35 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:35 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:52:35 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:35 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:35 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:35 DEBUG opendrift.models.basemodel:1253: Data needed for 174 elements
10:52:35 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:35 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 11:00:00 (before)
2023-08-21 12:00:00 (after)
10:52:35 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:52:35 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:52:35 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:52:35 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:52:35 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:52:35 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:52:35 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 15x16x4) for time after (2023-08-21 12:00:00)
10:52:35 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 11:00:00) in space (linearNDFast)
10:52:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:35 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 12:00:00) in space (linearNDFast)
10:52:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
10:52:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
10:52:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
10:52:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
10:52:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
10:52:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
10:52:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 1
10:52:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 1
10:52:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 1
10:52:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 1
10:52:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
10:52:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
10:52:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
10:52:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
10:52:35 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 11:00:00, weight 0.46) and
after (2023-08-21 12:00:00, weight 0.54) in time
10:52:35 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.03767195687483 and -59.01113511961448 degrees.
10:52:35 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.03767195687483 and -59.01113511961448 degrees.
10:52:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:35 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:35 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:35 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:52:35 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:52:35 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:35 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.422525 (min) 1.14436 (max)
10:52:35 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.975005 (min) 0.389836 (max)
10:52:35 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -6.14423e-05 (min) 0.000121279 (max)
10:52:35 DEBUG opendrift.models.basemodel:1524: x_wind: 1.69794 (min) 11.2828 (max)
10:52:35 DEBUG opendrift.models.basemodel:1524: y_wind: -0.173242 (min) 9.42127 (max)
10:52:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:52:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:52:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:52:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:52:35 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:52:35 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:52:35 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:52:35 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.59204 (min) 7.82779 (max)
10:52:35 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:35 DEBUG opendrift.models.basemodel:1527: 174 active elements
10:52:35 DEBUG opendrift.models.basemodel:1538: 59.160076706823546 <- latitude -> 59.16983414300394
10:52:35 DEBUG opendrift.models.basemodel:1543: 10.962338595039105 <- longitude -> 10.988875429740673
10:52:35 DEBUG opendrift.models.basemodel:1548: -7.4044189453125 <- z -> 0.0
10:52:35 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:35 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:52:35 DEBUG opendrift.models.physics_methods:940: min: 2.541649, mean: 6.464346, max: 11.009270
10:52:35 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 2.541649, mean: 6.464346, max: 11.009270
10:52:35 DEBUG opendrift.models.basemodel:813: 18 elements hit coastline, moving back to water
10:52:35 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:52:35 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:52:35 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:52:35 DEBUG opendrift.models.physics_methods:741: Advecting 35 of 174 elements above 0.100m with wind-sheared ocean current (0.062587 m/s - 0.251493 m/s)
10:52:35 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:52:35 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:52:35 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.14997926701171874
10:52:35 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:52:35 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:52:35 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:52:35 DEBUG opendrift.models.oceandrift:572: 20 elements penetrated seafloor, lifting up
10:52:35 DEBUG opendrift.models.oceandrift:572: 23 elements penetrated seafloor, lifting up
10:52:35 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:35 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:35 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:35 DEBUG opendrift.models.oceandrift:572: 22 elements penetrated seafloor, lifting up
10:52:35 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:35 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:35 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:35 DEBUG opendrift.models.oceandrift:572: 23 elements penetrated seafloor, lifting up
10:52:35 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:35 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:35 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:35 DEBUG opendrift.models.oceandrift:572: 17 elements penetrated seafloor, lifting up
10:52:35 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:35 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:35 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:35 DEBUG opendrift.models.oceandrift:572: 25 elements penetrated seafloor, lifting up
10:52:35 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:35 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:35 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:35 DEBUG opendrift.models.oceandrift:572: 21 elements penetrated seafloor, lifting up
10:52:35 DEBUG opendrift.models.oceandrift:590: 1 elements reached seafloor, set to bottom
10:52:35 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:35 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
10:52:35 DEBUG opendrift.models.oceandrift:572: 22 elements penetrated seafloor, lifting up
10:52:35 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:35 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:35 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:35 DEBUG opendrift.models.oceandrift:572: 25 elements penetrated seafloor, lifting up
10:52:35 DEBUG opendrift.models.oceandrift:572: 34 elements penetrated seafloor, lifting up
10:52:35 DEBUG opendrift.models.oceandrift:590: 1 elements reached seafloor, set to bottom
10:52:35 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:35 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
10:52:35 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:52:35 DEBUG opendrift.models.basemodel:2945: 174 active elements (0 deactivated)
10:52:35 DEBUG opendrift.models.basemodel:1658: to be seeded: 9826, already seeded 174
10:52:35 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:52:35 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:35 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:52:35 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:35 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:35 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:35 DEBUG opendrift.models.basemodel:1253: Data needed for 209 elements
10:52:35 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:35 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 11:00:00 (before)
2023-08-21 12:00:00 (after)
10:52:35 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 11:00:00) in space (linearNDFast)
10:52:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:35 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:52:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:35 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:35 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:35 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:35 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.54947 (min) 8.38595 (max)
10:52:35 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:35 DEBUG opendrift.models.basemodel:1527: 209 active elements
10:52:35 DEBUG opendrift.models.basemodel:1538: 59.156418522466545 <- latitude -> 59.17070547228963
10:52:35 DEBUG opendrift.models.basemodel:1543: 10.962785036786926 <- longitude -> 10.99113463786191
10:52:35 DEBUG opendrift.models.basemodel:1548: -7.614321937561035 <- z -> 0.0
10:52:35 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:35 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:52:35 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:52:35 INFO opendrift.models.basemodel:2882: 2023-08-21 11:42:19.552469 - step 6 of 216 - 209 active elements (0 deactivated)
10:52:35 DEBUG opendrift.models.basemodel:2888: 9791 elements scheduled.
10:52:35 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:52:35 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:35 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:52:35 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:35 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:52:35 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:35 DEBUG opendrift.models.basemodel:1253: Data needed for 209 elements
10:52:35 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:52:35 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:52:35 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:52:35 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:52:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:35 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:35 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:52:35 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:35 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:35 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:35 DEBUG opendrift.models.basemodel:1253: Data needed for 209 elements
10:52:35 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:35 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 11:00:00 (before)
2023-08-21 12:00:00 (after)
10:52:36 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:52:36 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:52:36 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:52:36 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:52:36 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:52:36 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:52:36 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 16x16x4) for time after (2023-08-21 12:00:00)
10:52:36 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 11:00:00) in space (linearNDFast)
10:52:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:36 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 12:00:00) in space (linearNDFast)
10:52:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
10:52:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
10:52:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
10:52:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
10:52:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
10:52:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
10:52:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 162 elements, expanding data 1
10:52:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 162 elements, expanding data 1
10:52:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 162 elements, expanding data 1
10:52:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 162 elements, expanding data 1
10:52:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
10:52:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
10:52:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
10:52:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 1
10:52:36 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 11:00:00, weight 0.29) and
after (2023-08-21 12:00:00, weight 0.71) in time
10:52:36 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.03722551958974 and -59.0088759109148 degrees.
10:52:36 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.03722551958974 and -59.0088759109148 degrees.
10:52:36 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:36 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:36 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:36 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:52:36 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:52:36 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:36 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.555281 (min) 1.21423 (max)
10:52:36 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.882782 (min) 0.344368 (max)
10:52:36 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -5.6411e-05 (min) 0.000101675 (max)
10:52:36 DEBUG opendrift.models.basemodel:1524: x_wind: -0.165572 (min) 11.8455 (max)
10:52:36 DEBUG opendrift.models.basemodel:1524: y_wind: 0.0742915 (min) 8.48028 (max)
10:52:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:52:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:52:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:52:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:52:36 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:52:36 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:52:36 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:52:36 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.54947 (min) 8.38595 (max)
10:52:36 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:36 DEBUG opendrift.models.basemodel:1527: 209 active elements
10:52:36 DEBUG opendrift.models.basemodel:1538: 59.156418522466545 <- latitude -> 59.17070547228963
10:52:36 DEBUG opendrift.models.basemodel:1543: 10.962785036786926 <- longitude -> 10.99113463786191
10:52:36 DEBUG opendrift.models.basemodel:1548: -7.614321937561035 <- z -> 0.0
10:52:36 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:36 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:52:36 DEBUG opendrift.models.physics_methods:940: min: 2.783343, mean: 6.505987, max: 10.451659
10:52:36 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 2.783343, mean: 6.505987, max: 10.451659
10:52:36 DEBUG opendrift.models.basemodel:813: 28 elements hit coastline, moving back to water
10:52:36 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:36 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:52:36 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:52:36 DEBUG opendrift.models.physics_methods:741: Advecting 36 of 209 elements above 0.100m with wind-sheared ocean current (0.012219 m/s - 0.235457 m/s)
10:52:36 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:52:36 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:52:36 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.13517176778944012
10:52:36 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:52:36 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:52:36 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:52:36 DEBUG opendrift.models.oceandrift:572: 27 elements penetrated seafloor, lifting up
10:52:36 DEBUG opendrift.models.oceandrift:590: 1 elements reached seafloor, set to bottom
10:52:36 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:36 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
10:52:36 DEBUG opendrift.models.oceandrift:572: 24 elements penetrated seafloor, lifting up
10:52:36 DEBUG opendrift.models.oceandrift:572: 26 elements penetrated seafloor, lifting up
10:52:36 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:36 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:36 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:36 DEBUG opendrift.models.oceandrift:572: 29 elements penetrated seafloor, lifting up
10:52:36 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:36 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:36 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:36 DEBUG opendrift.models.oceandrift:572: 21 elements penetrated seafloor, lifting up
10:52:36 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:52:36 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:52:36 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:52:36 DEBUG opendrift.models.oceandrift:572: 23 elements penetrated seafloor, lifting up
10:52:36 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:36 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:36 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:36 DEBUG opendrift.models.oceandrift:572: 24 elements penetrated seafloor, lifting up
10:52:36 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:36 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:36 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:36 DEBUG opendrift.models.oceandrift:572: 23 elements penetrated seafloor, lifting up
10:52:36 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:36 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:36 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:36 DEBUG opendrift.models.oceandrift:572: 20 elements penetrated seafloor, lifting up
10:52:36 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:36 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:36 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:36 DEBUG opendrift.models.oceandrift:572: 27 elements penetrated seafloor, lifting up
10:52:36 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:36 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:36 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:36 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:52:36 DEBUG opendrift.models.basemodel:2945: 209 active elements (0 deactivated)
10:52:36 DEBUG opendrift.models.basemodel:1658: to be seeded: 9791, already seeded 209
10:52:36 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:52:36 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:36 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:52:36 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:36 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:36 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:36 DEBUG opendrift.models.basemodel:1253: Data needed for 244 elements
10:52:36 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:36 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 11:00:00 (before)
2023-08-21 12:00:00 (after)
10:52:36 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 11:00:00) in space (linearNDFast)
10:52:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:36 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:52:36 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:36 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:36 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:36 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:36 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.59204 (min) 8.85598 (max)
10:52:36 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:36 DEBUG opendrift.models.basemodel:1527: 244 active elements
10:52:36 DEBUG opendrift.models.basemodel:1538: 59.15404504681536 <- latitude -> 59.17012562895505
10:52:36 DEBUG opendrift.models.basemodel:1543: 10.962920188903809 <- longitude -> 10.991129094125204
10:52:36 DEBUG opendrift.models.basemodel:1548: -8.20703977216321 <- z -> 0.0
10:52:36 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:36 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:52:36 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:52:36 INFO opendrift.models.basemodel:2882: 2023-08-21 11:52:19.552469 - step 7 of 216 - 244 active elements (0 deactivated)
10:52:36 DEBUG opendrift.models.basemodel:2888: 9756 elements scheduled.
10:52:36 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:52:36 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:36 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:52:36 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:36 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:52:36 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:36 DEBUG opendrift.models.basemodel:1253: Data needed for 244 elements
10:52:36 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:52:36 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:52:36 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:52:36 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:52:36 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:36 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:36 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:52:36 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:36 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:36 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:36 DEBUG opendrift.models.basemodel:1253: Data needed for 244 elements
10:52:36 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:36 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 11:00:00 (before)
2023-08-21 12:00:00 (after)
10:52:37 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:52:37 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:52:37 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:52:37 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:52:37 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:52:37 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:52:37 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 16x17x4) for time after (2023-08-21 12:00:00)
10:52:37 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 11:00:00) in space (linearNDFast)
10:52:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:37 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 12:00:00) in space (linearNDFast)
10:52:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
10:52:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
10:52:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
10:52:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
10:52:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
10:52:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
10:52:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 182 elements, expanding data 1
10:52:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 182 elements, expanding data 1
10:52:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 182 elements, expanding data 1
10:52:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 182 elements, expanding data 1
10:52:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
10:52:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
10:52:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
10:52:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
10:52:37 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 11:00:00, weight 0.13) and
after (2023-08-21 12:00:00, weight 0.87) in time
10:52:37 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.03709036875388 and -59.00888146959375 degrees.
10:52:37 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.03709036875388 and -59.00888146959375 degrees.
10:52:37 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:37 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:37 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:37 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:52:37 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:52:37 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:37 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.523194 (min) 1.1074 (max)
10:52:37 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.905069 (min) 0.305653 (max)
10:52:37 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -6.66254e-05 (min) 9.84055e-05 (max)
10:52:37 DEBUG opendrift.models.basemodel:1524: x_wind: 0.742322 (min) 11.4 (max)
10:52:37 DEBUG opendrift.models.basemodel:1524: y_wind: -0.126119 (min) 9.57758 (max)
10:52:37 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:52:37 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:52:37 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:52:37 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:52:37 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:52:37 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:52:37 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:52:37 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.59204 (min) 8.85598 (max)
10:52:37 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:37 DEBUG opendrift.models.basemodel:1527: 244 active elements
10:52:37 DEBUG opendrift.models.basemodel:1538: 59.15404504681536 <- latitude -> 59.17012562895505
10:52:37 DEBUG opendrift.models.basemodel:1543: 10.962920188903809 <- longitude -> 10.991129094125204
10:52:37 DEBUG opendrift.models.basemodel:1548: -8.20703977216321 <- z -> 0.0
10:52:37 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:37 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:52:37 DEBUG opendrift.models.physics_methods:940: min: 1.360724, mean: 6.392873, max: 11.209498
10:52:37 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 1.360724, mean: 6.392873, max: 11.209498
10:52:37 DEBUG opendrift.models.basemodel:813: 27 elements hit coastline, moving back to water
10:52:37 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:37 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:52:37 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:52:37 DEBUG opendrift.models.physics_methods:741: Advecting 35 of 244 elements above 0.100m with wind-sheared ocean current (0.031850 m/s - 0.247688 m/s)
10:52:37 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:52:37 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:52:37 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.15548414157302853
10:52:37 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:52:37 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:52:37 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:52:37 DEBUG opendrift.models.oceandrift:572: 35 elements penetrated seafloor, lifting up
10:52:37 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:37 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:37 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:37 DEBUG opendrift.models.oceandrift:572: 25 elements penetrated seafloor, lifting up
10:52:37 DEBUG opendrift.models.oceandrift:590: 1 elements reached seafloor, set to bottom
10:52:37 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:37 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
10:52:37 DEBUG opendrift.models.oceandrift:572: 23 elements penetrated seafloor, lifting up
10:52:37 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:37 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:37 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:37 DEBUG opendrift.models.oceandrift:572: 31 elements penetrated seafloor, lifting up
10:52:37 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:37 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:37 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:37 DEBUG opendrift.models.oceandrift:572: 26 elements penetrated seafloor, lifting up
10:52:37 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:37 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:37 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:37 DEBUG opendrift.models.oceandrift:572: 26 elements penetrated seafloor, lifting up
10:52:37 DEBUG opendrift.models.oceandrift:572: 27 elements penetrated seafloor, lifting up
10:52:37 DEBUG opendrift.models.oceandrift:572: 30 elements penetrated seafloor, lifting up
10:52:37 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:37 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:37 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:37 DEBUG opendrift.models.oceandrift:572: 42 elements penetrated seafloor, lifting up
10:52:37 DEBUG opendrift.models.oceandrift:572: 34 elements penetrated seafloor, lifting up
10:52:37 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:52:37 DEBUG opendrift.models.basemodel:2945: 244 active elements (0 deactivated)
10:52:37 DEBUG opendrift.models.basemodel:1658: to be seeded: 9756, already seeded 244
10:52:37 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:52:37 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:37 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:52:37 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:37 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:37 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:37 DEBUG opendrift.models.basemodel:1253: Data needed for 278 elements
10:52:37 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:37 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 12:00:00 (before)
2023-08-21 13:00:00 (after)
10:52:37 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 12:00:00) in space (linearNDFast)
10:52:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:37 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:52:37 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:37 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:37 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:37 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:37 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.48831 (min) 8.75917 (max)
10:52:37 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:37 DEBUG opendrift.models.basemodel:1527: 278 active elements
10:52:37 DEBUG opendrift.models.basemodel:1538: 59.15449443864705 <- latitude -> 59.17071129611172
10:52:37 DEBUG opendrift.models.basemodel:1543: 10.961749829160027 <- longitude -> 10.99627542110642
10:52:37 DEBUG opendrift.models.basemodel:1548: -8.85598087310791 <- z -> 0.0
10:52:37 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:37 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:37 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:52:37 INFO opendrift.models.basemodel:2882: 2023-08-21 12:02:19.552469 - step 8 of 216 - 278 active elements (0 deactivated)
10:52:37 DEBUG opendrift.models.basemodel:2888: 9722 elements scheduled.
10:52:37 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:52:37 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:37 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:52:37 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:37 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:52:37 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:37 DEBUG opendrift.models.basemodel:1253: Data needed for 278 elements
10:52:37 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:52:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:52:37 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:52:37 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:52:37 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:37 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:37 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:52:37 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:37 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:37 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:37 DEBUG opendrift.models.basemodel:1253: Data needed for 278 elements
10:52:37 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:37 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 12:00:00 (before)
2023-08-21 13:00:00 (after)
10:52:38 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:52:38 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:52:38 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:52:38 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:52:38 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:52:38 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:52:38 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 16x17x4) for time after (2023-08-21 13:00:00)
10:52:38 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 12:00:00) in space (linearNDFast)
10:52:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:38 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 13:00:00) in space (linearNDFast)
10:52:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
10:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
10:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
10:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
10:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
10:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 1
10:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 195 elements, expanding data 1
10:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 195 elements, expanding data 1
10:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 195 elements, expanding data 1
10:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 195 elements, expanding data 1
10:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
10:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
10:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
10:52:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 35 elements, expanding data 1
10:52:38 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 12:00:00, weight 0.96) and
after (2023-08-21 13:00:00, weight 0.04) in time
10:52:38 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.03826073013818 and -59.00373513116015 degrees.
10:52:38 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.03826073013818 and -59.00373513116015 degrees.
10:52:38 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:38 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:38 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:38 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:52:38 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:52:38 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:38 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.528862 (min) 1.13479 (max)
10:52:38 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.859954 (min) 0.384903 (max)
10:52:38 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000135297 (min) 0.000118898 (max)
10:52:38 DEBUG opendrift.models.basemodel:1524: x_wind: 0.341412 (min) 12.303 (max)
10:52:38 DEBUG opendrift.models.basemodel:1524: y_wind: -0.551974 (min) 9.32111 (max)
10:52:38 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:52:38 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:52:38 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:52:38 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:52:38 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:52:38 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:52:38 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:52:38 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.48831 (min) 8.75917 (max)
10:52:38 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:38 DEBUG opendrift.models.basemodel:1527: 278 active elements
10:52:38 DEBUG opendrift.models.basemodel:1538: 59.15449443864705 <- latitude -> 59.17071129611172
10:52:38 DEBUG opendrift.models.basemodel:1543: 10.961749829160027 <- longitude -> 10.99627542110642
10:52:38 DEBUG opendrift.models.basemodel:1548: -8.759166717529297 <- z -> 0.0
10:52:38 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:38 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:52:38 DEBUG opendrift.models.physics_methods:940: min: 1.064714, mean: 6.271550, max: 10.977542
10:52:38 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 1.064714, mean: 6.271550, max: 10.977542
10:52:38 DEBUG opendrift.models.basemodel:813: 30 elements hit coastline, moving back to water
10:52:38 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:52:38 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:52:38 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:52:38 DEBUG opendrift.models.physics_methods:741: Advecting 34 of 278 elements above 0.100m with wind-sheared ocean current (0.068614 m/s - 0.220448 m/s)
10:52:38 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:52:38 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:52:38 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.14911609584434507
10:52:38 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:52:38 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:52:38 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:52:38 DEBUG opendrift.models.oceandrift:572: 33 elements penetrated seafloor, lifting up
10:52:38 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:52:38 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:52:38 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:52:38 DEBUG opendrift.models.oceandrift:572: 37 elements penetrated seafloor, lifting up
10:52:38 DEBUG opendrift.models.oceandrift:590: 1 elements reached seafloor, set to bottom
10:52:38 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:38 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
10:52:38 DEBUG opendrift.models.oceandrift:572: 31 elements penetrated seafloor, lifting up
10:52:38 DEBUG opendrift.models.oceandrift:590: 1 elements reached seafloor, set to bottom
10:52:38 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:38 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
10:52:38 DEBUG opendrift.models.oceandrift:572: 27 elements penetrated seafloor, lifting up
10:52:38 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:38 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:38 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:38 DEBUG opendrift.models.oceandrift:572: 37 elements penetrated seafloor, lifting up
10:52:38 DEBUG opendrift.models.oceandrift:590: 1 elements reached seafloor, set to bottom
10:52:38 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:38 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
10:52:38 DEBUG opendrift.models.oceandrift:572: 28 elements penetrated seafloor, lifting up
10:52:38 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:38 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:38 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:38 DEBUG opendrift.models.oceandrift:572: 35 elements penetrated seafloor, lifting up
10:52:38 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:52:38 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:52:38 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:52:38 DEBUG opendrift.models.oceandrift:572: 28 elements penetrated seafloor, lifting up
10:52:38 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:38 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:38 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:38 DEBUG opendrift.models.oceandrift:572: 38 elements penetrated seafloor, lifting up
10:52:38 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:38 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:38 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:38 DEBUG opendrift.models.oceandrift:572: 32 elements penetrated seafloor, lifting up
10:52:38 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:52:38 DEBUG opendrift.models.basemodel:2945: 278 active elements (0 deactivated)
10:52:38 DEBUG opendrift.models.basemodel:1658: to be seeded: 9722, already seeded 278
10:52:38 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:52:38 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:38 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:52:38 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:38 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:38 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:38 DEBUG opendrift.models.basemodel:1253: Data needed for 313 elements
10:52:38 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:38 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 12:00:00 (before)
2023-08-21 13:00:00 (after)
10:52:38 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 12:00:00) in space (linearNDFast)
10:52:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:38 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:52:38 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:38 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:38 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:38 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:38 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.53729 (min) 8.75917 (max)
10:52:38 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:38 DEBUG opendrift.models.basemodel:1527: 313 active elements
10:52:38 DEBUG opendrift.models.basemodel:1538: 59.15449443864705 <- latitude -> 59.17053874217196
10:52:38 DEBUG opendrift.models.basemodel:1543: 10.961137632526551 <- longitude -> 10.997419170934393
10:52:38 DEBUG opendrift.models.basemodel:1548: -8.749166717529297 <- z -> 0.0
10:52:38 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:38 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:52:38 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:52:38 INFO opendrift.models.basemodel:2882: 2023-08-21 12:12:19.552469 - step 9 of 216 - 313 active elements (0 deactivated)
10:52:38 DEBUG opendrift.models.basemodel:2888: 9687 elements scheduled.
10:52:38 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:52:38 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:38 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:52:38 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:38 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:52:38 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:38 DEBUG opendrift.models.basemodel:1253: Data needed for 313 elements
10:52:38 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:52:38 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:52:38 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:52:38 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:52:38 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:38 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:38 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:52:38 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:38 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:38 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:38 DEBUG opendrift.models.basemodel:1253: Data needed for 313 elements
10:52:38 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:38 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 12:00:00 (before)
2023-08-21 13:00:00 (after)
10:52:39 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:52:39 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:52:39 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:52:39 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:52:39 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:52:39 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:52:39 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 16x17x4) for time after (2023-08-21 13:00:00)
10:52:39 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 12:00:00) in space (linearNDFast)
10:52:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:39 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 13:00:00) in space (linearNDFast)
10:52:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
10:52:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
10:52:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
10:52:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
10:52:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
10:52:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 43 elements, expanding data 1
10:52:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 205 elements, expanding data 1
10:52:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 205 elements, expanding data 1
10:52:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 205 elements, expanding data 1
10:52:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 205 elements, expanding data 1
10:52:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
10:52:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
10:52:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
10:52:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
10:52:39 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 12:00:00, weight 0.79) and
after (2023-08-21 13:00:00, weight 0.21) in time
10:52:39 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.03887292300617 and -59.00259137879915 degrees.
10:52:39 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.03887292300617 and -59.00259137879915 degrees.
10:52:39 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:39 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:39 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:39 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:52:39 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:52:39 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:39 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.595196 (min) 1.17352 (max)
10:52:39 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.847633 (min) 0.416139 (max)
10:52:39 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000219259 (min) 0.000152697 (max)
10:52:39 DEBUG opendrift.models.basemodel:1524: x_wind: -0.129576 (min) 11.18 (max)
10:52:39 DEBUG opendrift.models.basemodel:1524: y_wind: -1.52196 (min) 9.83475 (max)
10:52:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:52:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:52:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:52:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:52:39 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:52:39 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:52:39 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:52:39 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.53729 (min) 8.75917 (max)
10:52:39 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:39 DEBUG opendrift.models.basemodel:1527: 313 active elements
10:52:39 DEBUG opendrift.models.basemodel:1538: 59.15449443864705 <- latitude -> 59.17053874217196
10:52:39 DEBUG opendrift.models.basemodel:1543: 10.961137632526551 <- longitude -> 10.997419170934393
10:52:39 DEBUG opendrift.models.basemodel:1548: -8.749166717529297 <- z -> 0.0
10:52:39 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:39 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:52:39 DEBUG opendrift.models.physics_methods:940: min: 2.647982, mean: 6.613442, max: 10.229131
10:52:39 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 2.647982, mean: 6.613442, max: 10.229131
10:52:39 DEBUG opendrift.models.basemodel:813: 32 elements hit coastline, moving back to water
10:52:39 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:52:39 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:52:39 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:52:39 DEBUG opendrift.models.physics_methods:741: Advecting 37 of 313 elements above 0.100m with wind-sheared ocean current (0.022041 m/s - 0.227419 m/s)
10:52:39 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:52:39 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:52:39 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.1294772833538818
10:52:39 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:52:39 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:52:39 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:52:39 DEBUG opendrift.models.oceandrift:572: 54 elements penetrated seafloor, lifting up
10:52:39 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:39 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:39 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:39 DEBUG opendrift.models.oceandrift:572: 31 elements penetrated seafloor, lifting up
10:52:39 DEBUG opendrift.models.oceandrift:572: 31 elements penetrated seafloor, lifting up
10:52:39 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:39 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:39 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:39 DEBUG opendrift.models.oceandrift:572: 26 elements penetrated seafloor, lifting up
10:52:39 DEBUG opendrift.models.oceandrift:590: 1 elements reached seafloor, set to bottom
10:52:39 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:39 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
10:52:39 DEBUG opendrift.models.oceandrift:572: 45 elements penetrated seafloor, lifting up
10:52:39 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:39 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:39 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:39 DEBUG opendrift.models.oceandrift:572: 45 elements penetrated seafloor, lifting up
10:52:39 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:39 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:39 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:39 DEBUG opendrift.models.oceandrift:572: 33 elements penetrated seafloor, lifting up
10:52:39 DEBUG opendrift.models.oceandrift:572: 30 elements penetrated seafloor, lifting up
10:52:39 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:39 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:39 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:39 DEBUG opendrift.models.oceandrift:572: 48 elements penetrated seafloor, lifting up
10:52:39 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:52:39 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:39 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:52:39 DEBUG opendrift.models.oceandrift:572: 50 elements penetrated seafloor, lifting up
10:52:39 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:39 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:39 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:39 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:52:39 DEBUG opendrift.models.basemodel:2945: 313 active elements (0 deactivated)
10:52:39 DEBUG opendrift.models.basemodel:1658: to be seeded: 9687, already seeded 313
10:52:39 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:52:39 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:39 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:52:39 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:39 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:39 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:39 DEBUG opendrift.models.basemodel:1253: Data needed for 348 elements
10:52:39 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:39 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 12:00:00 (before)
2023-08-21 13:00:00 (after)
10:52:39 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 12:00:00) in space (linearNDFast)
10:52:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:39 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:52:39 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:39 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:39 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:39 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:39 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.4659 (min) 9.15315 (max)
10:52:39 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:39 DEBUG opendrift.models.basemodel:1527: 348 active elements
10:52:39 DEBUG opendrift.models.basemodel:1538: 59.15263038783455 <- latitude -> 59.171603588969006
10:52:39 DEBUG opendrift.models.basemodel:1543: 10.96203953381313 <- longitude -> 11.000119825717855
10:52:39 DEBUG opendrift.models.basemodel:1548: -8.075967788696289 <- z -> 0.0
10:52:39 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:39 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:52:39 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:52:39 INFO opendrift.models.basemodel:2882: 2023-08-21 12:22:19.552469 - step 10 of 216 - 348 active elements (0 deactivated)
10:52:39 DEBUG opendrift.models.basemodel:2888: 9652 elements scheduled.
10:52:39 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:52:39 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:39 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:52:39 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:39 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:52:39 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:39 DEBUG opendrift.models.basemodel:1253: Data needed for 348 elements
10:52:39 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:52:39 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:52:39 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:52:39 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:52:39 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:39 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:39 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:52:39 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:39 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:39 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:39 DEBUG opendrift.models.basemodel:1253: Data needed for 348 elements
10:52:39 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:39 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 12:00:00 (before)
2023-08-21 13:00:00 (after)
10:52:39 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:52:39 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:52:39 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:52:39 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:52:39 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:52:39 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:52:39 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 16x17x4) for time after (2023-08-21 13:00:00)
10:52:39 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 12:00:00) in space (linearNDFast)
10:52:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:39 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 13:00:00) in space (linearNDFast)
10:52:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
10:52:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
10:52:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
10:52:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
10:52:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
10:52:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 1
10:52:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 213 elements, expanding data 1
10:52:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 213 elements, expanding data 1
10:52:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 213 elements, expanding data 1
10:52:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 213 elements, expanding data 1
10:52:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
10:52:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
10:52:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
10:52:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 1
10:52:39 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 12:00:00, weight 0.63) and
after (2023-08-21 13:00:00, weight 0.37) in time
10:52:39 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.03797101984061 and -58.99989072509677 degrees.
10:52:39 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.03797101984061 and -58.99989072509677 degrees.
10:52:39 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:39 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:39 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:39 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:52:39 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:52:39 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:39 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.548281 (min) 1.07208 (max)
10:52:39 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.09275 (min) 0.430355 (max)
10:52:39 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000174442 (min) 0.000181914 (max)
10:52:39 DEBUG opendrift.models.basemodel:1524: x_wind: 0.208164 (min) 12.5775 (max)
10:52:39 DEBUG opendrift.models.basemodel:1524: y_wind: -0.734671 (min) 9.91074 (max)
10:52:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:52:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:52:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:52:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:52:39 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:52:39 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:52:39 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:52:39 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.4659 (min) 9.15315 (max)
10:52:39 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:39 DEBUG opendrift.models.basemodel:1527: 348 active elements
10:52:39 DEBUG opendrift.models.basemodel:1538: 59.15263038783455 <- latitude -> 59.171603588969006
10:52:39 DEBUG opendrift.models.basemodel:1543: 10.96203953381313 <- longitude -> 11.000119825717855
10:52:39 DEBUG opendrift.models.basemodel:1548: -8.075967788696289 <- z -> 0.0
10:52:39 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:39 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:52:39 DEBUG opendrift.models.physics_methods:940: min: 1.105602, mean: 6.662978, max: 12.089910
10:52:39 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 1.105602, mean: 6.662978, max: 12.089910
10:52:39 DEBUG opendrift.models.basemodel:813: 40 elements hit coastline, moving back to water
10:52:39 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:39 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:52:39 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:52:39 DEBUG opendrift.models.physics_methods:741: Advecting 35 of 348 elements above 0.100m with wind-sheared ocean current (0.025878 m/s - 0.267550 m/s)
10:52:39 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:52:39 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:52:39 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.18086658222873686
10:52:39 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:52:39 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:52:39 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:52:39 DEBUG opendrift.models.oceandrift:572: 47 elements penetrated seafloor, lifting up
10:52:39 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:39 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:39 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:39 DEBUG opendrift.models.oceandrift:572: 44 elements penetrated seafloor, lifting up
10:52:39 DEBUG opendrift.models.oceandrift:590: 1 elements reached seafloor, set to bottom
10:52:39 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:39 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
10:52:39 DEBUG opendrift.models.oceandrift:572: 39 elements penetrated seafloor, lifting up
10:52:39 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:39 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:39 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:39 DEBUG opendrift.models.oceandrift:572: 42 elements penetrated seafloor, lifting up
10:52:39 DEBUG opendrift.models.oceandrift:572: 35 elements penetrated seafloor, lifting up
10:52:39 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:39 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:39 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:39 DEBUG opendrift.models.oceandrift:572: 43 elements penetrated seafloor, lifting up
10:52:39 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:39 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:39 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:39 DEBUG opendrift.models.oceandrift:572: 36 elements penetrated seafloor, lifting up
10:52:39 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:39 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:39 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:39 DEBUG opendrift.models.oceandrift:572: 48 elements penetrated seafloor, lifting up
10:52:39 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:39 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:39 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:39 DEBUG opendrift.models.oceandrift:572: 37 elements penetrated seafloor, lifting up
10:52:39 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:52:39 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:52:39 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:52:39 DEBUG opendrift.models.oceandrift:572: 45 elements penetrated seafloor, lifting up
10:52:39 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:52:39 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:52:39 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:52:39 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:52:39 DEBUG opendrift.models.basemodel:2945: 348 active elements (0 deactivated)
10:52:39 DEBUG opendrift.models.basemodel:1658: to be seeded: 9652, already seeded 348
10:52:39 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:52:39 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:39 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:52:39 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:39 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:39 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:39 DEBUG opendrift.models.basemodel:1253: Data needed for 382 elements
10:52:39 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:39 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 12:00:00 (before)
2023-08-21 13:00:00 (after)
10:52:39 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 12:00:00) in space (linearNDFast)
10:52:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
10:52:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
10:52:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
10:52:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
10:52:39 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:52:39 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:39 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:39 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:39 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:39 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.54502 (min) 9.47225 (max)
10:52:39 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:39 DEBUG opendrift.models.basemodel:1527: 382 active elements
10:52:39 DEBUG opendrift.models.basemodel:1538: 59.150948679193846 <- latitude -> 59.170407380127514
10:52:39 DEBUG opendrift.models.basemodel:1543: 10.957553373879364 <- longitude -> 11.001776977334965
10:52:39 DEBUG opendrift.models.basemodel:1548: -8.448742916656554 <- z -> 0.0
10:52:39 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:39 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:39 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:52:39 INFO opendrift.models.basemodel:2882: 2023-08-21 12:32:19.552469 - step 11 of 216 - 382 active elements (0 deactivated)
10:52:39 DEBUG opendrift.models.basemodel:2888: 9618 elements scheduled.
10:52:39 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:52:39 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:39 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:52:39 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:39 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:52:39 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:39 DEBUG opendrift.models.basemodel:1253: Data needed for 382 elements
10:52:39 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:52:39 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:52:39 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:52:39 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:52:39 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:39 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:39 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:52:39 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:39 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:39 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:39 DEBUG opendrift.models.basemodel:1253: Data needed for 382 elements
10:52:39 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:39 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 12:00:00 (before)
2023-08-21 13:00:00 (after)
10:52:40 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:52:40 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:52:40 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:52:40 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:52:40 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:52:40 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:52:40 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 17x17x4) for time after (2023-08-21 13:00:00)
10:52:40 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 12:00:00) in space (linearNDFast)
10:52:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:40 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 13:00:00) in space (linearNDFast)
10:52:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
10:52:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
10:52:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 1
10:52:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 1
10:52:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 1
10:52:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 1
10:52:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 225 elements, expanding data 1
10:52:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:52:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 225 elements, expanding data 1
10:52:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:52:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 225 elements, expanding data 1
10:52:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:52:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 225 elements, expanding data 1
10:52:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:52:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
10:52:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
10:52:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
10:52:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 1
10:52:40 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 12:00:00, weight 0.46) and
after (2023-08-21 13:00:00, weight 0.54) in time
10:52:40 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.04245718007284 and -58.99823356891606 degrees.
10:52:40 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.04245718007284 and -58.99823356891606 degrees.
10:52:40 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:40 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:40 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:40 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:52:40 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:52:40 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:40 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.6288 (min) 1.36277 (max)
10:52:40 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.859822 (min) 0.336554 (max)
10:52:40 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.00037314 (min) 0.000140188 (max)
10:52:40 DEBUG opendrift.models.basemodel:1524: x_wind: -0.8143 (min) 10.7946 (max)
10:52:40 DEBUG opendrift.models.basemodel:1524: y_wind: -1.63588 (min) 9.83827 (max)
10:52:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:52:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:52:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:52:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:52:40 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:52:40 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:52:40 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:52:40 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.54502 (min) 9.47225 (max)
10:52:40 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:40 DEBUG opendrift.models.basemodel:1527: 382 active elements
10:52:40 DEBUG opendrift.models.basemodel:1538: 59.150948679193846 <- latitude -> 59.170407380127514
10:52:40 DEBUG opendrift.models.basemodel:1543: 10.957553373879364 <- longitude -> 11.001776977334965
10:52:40 DEBUG opendrift.models.basemodel:1548: -8.448742916656554 <- z -> 0.0
10:52:40 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:40 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:52:40 DEBUG opendrift.models.physics_methods:940: min: 1.337833, mean: 6.446762, max: 11.033068
10:52:40 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 1.337833, mean: 6.446762, max: 11.033068
10:52:40 DEBUG opendrift.models.basemodel:813: 45 elements hit coastline, moving back to water
10:52:40 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:52:40 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:52:40 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:52:40 DEBUG opendrift.models.physics_methods:741: Advecting 36 of 382 elements above 0.100m with wind-sheared ocean current (0.034079 m/s - 0.229024 m/s)
10:52:40 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:52:40 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:52:40 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.15062834913070677
10:52:40 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:52:40 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:52:40 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:52:40 DEBUG opendrift.models.oceandrift:572: 53 elements penetrated seafloor, lifting up
10:52:40 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:52:40 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:52:40 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:52:40 DEBUG opendrift.models.oceandrift:572: 47 elements penetrated seafloor, lifting up
10:52:40 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:52:40 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:52:40 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:52:40 DEBUG opendrift.models.oceandrift:572: 37 elements penetrated seafloor, lifting up
10:52:40 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:40 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:40 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:40 DEBUG opendrift.models.oceandrift:572: 36 elements penetrated seafloor, lifting up
10:52:40 DEBUG opendrift.models.oceandrift:590: 1 elements reached seafloor, set to bottom
10:52:40 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:40 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
10:52:40 DEBUG opendrift.models.oceandrift:572: 49 elements penetrated seafloor, lifting up
10:52:40 DEBUG opendrift.models.oceandrift:590: 1 elements reached seafloor, set to bottom
10:52:40 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:40 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
10:52:40 DEBUG opendrift.models.oceandrift:572: 42 elements penetrated seafloor, lifting up
10:52:40 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:40 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:40 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:40 DEBUG opendrift.models.oceandrift:572: 57 elements penetrated seafloor, lifting up
10:52:40 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:40 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:40 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:40 DEBUG opendrift.models.oceandrift:572: 50 elements penetrated seafloor, lifting up
10:52:40 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:52:40 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:40 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:52:40 DEBUG opendrift.models.oceandrift:572: 40 elements penetrated seafloor, lifting up
10:52:40 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:52:40 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:40 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:52:40 DEBUG opendrift.models.oceandrift:572: 51 elements penetrated seafloor, lifting up
10:52:40 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:40 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:40 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:40 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:52:40 DEBUG opendrift.models.basemodel:2945: 382 active elements (0 deactivated)
10:52:40 DEBUG opendrift.models.basemodel:1658: to be seeded: 9618, already seeded 382
10:52:40 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:52:40 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:40 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:52:40 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:40 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:40 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:40 DEBUG opendrift.models.basemodel:1253: Data needed for 417 elements
10:52:40 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:40 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 12:00:00 (before)
2023-08-21 13:00:00 (after)
10:52:40 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 12:00:00) in space (linearNDFast)
10:52:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:40 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:52:40 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:40 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:40 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:40 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:40 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.55823 (min) 9.67589 (max)
10:52:40 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:40 DEBUG opendrift.models.basemodel:1527: 417 active elements
10:52:40 DEBUG opendrift.models.basemodel:1538: 59.14915471720584 <- latitude -> 59.169483789812034
10:52:40 DEBUG opendrift.models.basemodel:1543: 10.956737613456772 <- longitude -> 11.001776977334965
10:52:40 DEBUG opendrift.models.basemodel:1548: -9.14078353881836 <- z -> 0.0
10:52:40 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:40 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:40 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:52:40 INFO opendrift.models.basemodel:2882: 2023-08-21 12:42:19.552469 - step 12 of 216 - 417 active elements (0 deactivated)
10:52:40 DEBUG opendrift.models.basemodel:2888: 9583 elements scheduled.
10:52:40 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:52:40 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:40 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:52:40 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:40 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:52:40 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:40 DEBUG opendrift.models.basemodel:1253: Data needed for 417 elements
10:52:40 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:52:40 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:52:40 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:52:40 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:52:40 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:40 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:40 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:52:40 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:40 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:40 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:40 DEBUG opendrift.models.basemodel:1253: Data needed for 417 elements
10:52:40 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:40 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 12:00:00 (before)
2023-08-21 13:00:00 (after)
10:52:41 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:52:41 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:52:41 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:52:41 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:52:41 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:52:41 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:52:41 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 17x17x4) for time after (2023-08-21 13:00:00)
10:52:41 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 12:00:00) in space (linearNDFast)
10:52:41 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:41 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 13:00:00) in space (linearNDFast)
10:52:41 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 1
10:52:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 1
10:52:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
10:52:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
10:52:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
10:52:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
10:52:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 1
10:52:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
10:52:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 1
10:52:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
10:52:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 1
10:52:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
10:52:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 1
10:52:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
10:52:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 1
10:52:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 1
10:52:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 1
10:52:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 1
10:52:41 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 12:00:00, weight 0.29) and
after (2023-08-21 13:00:00, weight 0.71) in time
10:52:41 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.04327294342195 and -58.99823356891606 degrees.
10:52:41 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.04327294342195 and -58.99823356891606 degrees.
10:52:41 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:41 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:41 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:41 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:52:41 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:52:41 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:41 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.569953 (min) 1.30247 (max)
10:52:41 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.831923 (min) 0.339456 (max)
10:52:41 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.00036992 (min) 0.000147248 (max)
10:52:41 DEBUG opendrift.models.basemodel:1524: x_wind: -0.298048 (min) 12.7723 (max)
10:52:41 DEBUG opendrift.models.basemodel:1524: y_wind: -4.57976 (min) 9.77522 (max)
10:52:41 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:52:41 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:52:41 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:52:41 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:52:41 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:52:41 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:52:41 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:52:41 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.55823 (min) 9.67589 (max)
10:52:41 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:41 DEBUG opendrift.models.basemodel:1527: 417 active elements
10:52:41 DEBUG opendrift.models.basemodel:1538: 59.14915471720584 <- latitude -> 59.169483789812034
10:52:41 DEBUG opendrift.models.basemodel:1543: 10.956737613456772 <- longitude -> 11.001776977334965
10:52:41 DEBUG opendrift.models.basemodel:1548: -9.14078353881836 <- z -> 0.0
10:52:41 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:41 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:52:41 DEBUG opendrift.models.physics_methods:940: min: 0.830038, mean: 6.585842, max: 11.539277
10:52:41 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.830038, mean: 6.585842, max: 11.539277
10:52:41 DEBUG opendrift.models.basemodel:813: 46 elements hit coastline, moving back to water
10:52:41 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:41 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:52:41 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:52:41 DEBUG opendrift.models.physics_methods:741: Advecting 35 of 417 elements above 0.100m with wind-sheared ocean current (0.079043 m/s - 0.214135 m/s)
10:52:41 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:52:41 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:52:41 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.1647670540104675
10:52:41 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:52:41 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:52:41 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:52:41 DEBUG opendrift.models.oceandrift:572: 54 elements penetrated seafloor, lifting up
10:52:41 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:41 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:41 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:41 DEBUG opendrift.models.oceandrift:572: 67 elements penetrated seafloor, lifting up
10:52:41 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:52:41 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:52:41 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:52:41 DEBUG opendrift.models.oceandrift:572: 51 elements penetrated seafloor, lifting up
10:52:41 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:52:41 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:52:41 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:52:41 DEBUG opendrift.models.oceandrift:572: 46 elements penetrated seafloor, lifting up
10:52:41 DEBUG opendrift.models.oceandrift:590: 1 elements reached seafloor, set to bottom
10:52:41 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:41 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
10:52:41 DEBUG opendrift.models.oceandrift:572: 42 elements penetrated seafloor, lifting up
10:52:41 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:41 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:41 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:41 DEBUG opendrift.models.oceandrift:572: 38 elements penetrated seafloor, lifting up
10:52:41 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:41 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:41 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:41 DEBUG opendrift.models.oceandrift:572: 44 elements penetrated seafloor, lifting up
10:52:41 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:41 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:41 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:41 DEBUG opendrift.models.oceandrift:572: 45 elements penetrated seafloor, lifting up
10:52:41 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:41 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:41 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:41 DEBUG opendrift.models.oceandrift:572: 40 elements penetrated seafloor, lifting up
10:52:41 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:41 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:41 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:41 DEBUG opendrift.models.oceandrift:572: 51 elements penetrated seafloor, lifting up
10:52:41 DEBUG opendrift.models.oceandrift:590: 1 elements reached seafloor, set to bottom
10:52:41 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:41 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
10:52:41 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:52:41 DEBUG opendrift.models.basemodel:2945: 417 active elements (0 deactivated)
10:52:41 DEBUG opendrift.models.basemodel:1658: to be seeded: 9583, already seeded 417
10:52:41 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:52:41 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:41 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:52:41 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:41 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:41 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:41 DEBUG opendrift.models.basemodel:1253: Data needed for 452 elements
10:52:41 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:41 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 12:00:00 (before)
2023-08-21 13:00:00 (after)
10:52:41 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 12:00:00) in space (linearNDFast)
10:52:41 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:41 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:52:41 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:41 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:41 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:41 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:41 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.10384 (min) 10.032 (max)
10:52:41 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:41 DEBUG opendrift.models.basemodel:1527: 452 active elements
10:52:41 DEBUG opendrift.models.basemodel:1538: 59.147156188317915 <- latitude -> 59.17128488849853
10:52:41 DEBUG opendrift.models.basemodel:1543: 10.950759389141803 <- longitude -> 11.006212609329358
10:52:41 DEBUG opendrift.models.basemodel:1548: -9.32940601348877 <- z -> 0.0
10:52:41 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:41 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:52:41 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:52:41 INFO opendrift.models.basemodel:2882: 2023-08-21 12:52:19.552469 - step 13 of 216 - 452 active elements (0 deactivated)
10:52:41 DEBUG opendrift.models.basemodel:2888: 9548 elements scheduled.
10:52:41 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:52:41 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:41 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:52:41 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:41 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:52:41 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:41 DEBUG opendrift.models.basemodel:1253: Data needed for 452 elements
10:52:41 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:52:41 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:52:41 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:52:41 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:52:41 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:41 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:41 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:52:41 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:41 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:41 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:41 DEBUG opendrift.models.basemodel:1253: Data needed for 452 elements
10:52:41 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:41 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 12:00:00 (before)
2023-08-21 13:00:00 (after)
10:52:42 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:52:42 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:52:42 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:52:42 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:52:42 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:52:42 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:52:42 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x4) for time after (2023-08-21 13:00:00)
10:52:42 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 12:00:00) in space (linearNDFast)
10:52:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:42 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 13:00:00) in space (linearNDFast)
10:52:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 1
10:52:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 1
10:52:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
10:52:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
10:52:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
10:52:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
10:52:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 243 elements, expanding data 1
10:52:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:52:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 243 elements, expanding data 1
10:52:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:52:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 243 elements, expanding data 1
10:52:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:52:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 243 elements, expanding data 1
10:52:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:52:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 1
10:52:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 1
10:52:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 1
10:52:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 44 elements, expanding data 1
10:52:42 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 12:00:00, weight 0.13) and
after (2023-08-21 13:00:00, weight 0.87) in time
10:52:42 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.04925116869015 and -58.99379793259952 degrees.
10:52:42 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.04925116869015 and -58.99379793259952 degrees.
10:52:42 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:42 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:42 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:42 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:52:42 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:52:42 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:42 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.54362 (min) 1.07155 (max)
10:52:42 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.932844 (min) 0.434022 (max)
10:52:42 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000392062 (min) 0.000170745 (max)
10:52:42 DEBUG opendrift.models.basemodel:1524: x_wind: -0.539431 (min) 11.8987 (max)
10:52:42 DEBUG opendrift.models.basemodel:1524: y_wind: -1.88076 (min) 9.72908 (max)
10:52:42 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:52:42 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:52:42 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:52:42 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:52:42 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:52:42 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:52:42 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:52:42 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.10384 (min) 10.032 (max)
10:52:42 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:42 DEBUG opendrift.models.basemodel:1527: 452 active elements
10:52:42 DEBUG opendrift.models.basemodel:1538: 59.147156188317915 <- latitude -> 59.17128488849853
10:52:42 DEBUG opendrift.models.basemodel:1543: 10.950759389141803 <- longitude -> 11.006212609329358
10:52:42 DEBUG opendrift.models.basemodel:1548: -9.32940601348877 <- z -> 0.0
10:52:42 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:42 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:52:42 DEBUG opendrift.models.physics_methods:940: min: 1.772810, mean: 6.657880, max: 11.248023
10:52:42 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 1.772810, mean: 6.657880, max: 11.248023
10:52:42 DEBUG opendrift.models.basemodel:813: 52 elements hit coastline, moving back to water
10:52:42 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:52:42 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:52:42 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:52:42 DEBUG opendrift.models.physics_methods:741: Advecting 36 of 452 elements above 0.100m with wind-sheared ocean current (0.001990 m/s - 0.234772 m/s)
10:52:42 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:52:42 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:52:42 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.15655469274719236
10:52:42 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:52:42 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:52:42 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:52:42 DEBUG opendrift.models.oceandrift:572: 65 elements penetrated seafloor, lifting up
10:52:42 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:42 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:42 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:42 DEBUG opendrift.models.oceandrift:572: 58 elements penetrated seafloor, lifting up
10:52:42 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:52:42 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:52:42 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:52:42 DEBUG opendrift.models.oceandrift:572: 49 elements penetrated seafloor, lifting up
10:52:42 DEBUG opendrift.models.oceandrift:572: 61 elements penetrated seafloor, lifting up
10:52:42 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:52:42 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:52:42 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:52:42 DEBUG opendrift.models.oceandrift:572: 60 elements penetrated seafloor, lifting up
10:52:42 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:42 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:42 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:42 DEBUG opendrift.models.oceandrift:572: 55 elements penetrated seafloor, lifting up
10:52:42 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:42 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:42 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:42 DEBUG opendrift.models.oceandrift:572: 57 elements penetrated seafloor, lifting up
10:52:42 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:42 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:42 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:42 DEBUG opendrift.models.oceandrift:572: 61 elements penetrated seafloor, lifting up
10:52:42 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:42 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:42 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:42 DEBUG opendrift.models.oceandrift:572: 58 elements penetrated seafloor, lifting up
10:52:42 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:52:42 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:42 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:52:42 DEBUG opendrift.models.oceandrift:572: 54 elements penetrated seafloor, lifting up
10:52:42 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:52:42 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:42 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:52:42 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:52:42 DEBUG opendrift.models.basemodel:2945: 452 active elements (0 deactivated)
10:52:42 DEBUG opendrift.models.basemodel:1658: to be seeded: 9548, already seeded 452
10:52:42 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:52:42 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:42 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:52:42 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:42 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:42 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:42 DEBUG opendrift.models.basemodel:1253: Data needed for 487 elements
10:52:42 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:42 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 13:00:00 (before)
2023-08-21 14:00:00 (after)
10:52:42 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 13:00:00) in space (linearNDFast)
10:52:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:42 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:52:42 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:42 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:42 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:42 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:42 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.46872 (min) 10.7049 (max)
10:52:42 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:42 DEBUG opendrift.models.basemodel:1527: 487 active elements
10:52:42 DEBUG opendrift.models.basemodel:1538: 59.144080992656505 <- latitude -> 59.17119255216251
10:52:42 DEBUG opendrift.models.basemodel:1543: 10.955609828020943 <- longitude -> 11.006974488373748
10:52:42 DEBUG opendrift.models.basemodel:1548: -9.695577712889271 <- z -> 0.0
10:52:42 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:42 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:52:42 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:52:42 INFO opendrift.models.basemodel:2882: 2023-08-21 13:02:19.552469 - step 14 of 216 - 487 active elements (0 deactivated)
10:52:42 DEBUG opendrift.models.basemodel:2888: 9513 elements scheduled.
10:52:42 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:52:42 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:42 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:52:42 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:42 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:52:42 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:42 DEBUG opendrift.models.basemodel:1253: Data needed for 487 elements
10:52:42 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:52:42 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:52:42 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:52:42 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:52:42 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:42 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:42 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:52:42 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:42 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:42 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:42 DEBUG opendrift.models.basemodel:1253: Data needed for 487 elements
10:52:42 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:42 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 13:00:00 (before)
2023-08-21 14:00:00 (after)
10:52:43 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:52:43 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:52:43 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:52:43 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:52:43 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:52:43 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:52:43 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x4) for time after (2023-08-21 14:00:00)
10:52:43 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 13:00:00) in space (linearNDFast)
10:52:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:43 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 14:00:00) in space (linearNDFast)
10:52:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
10:52:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
10:52:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 1
10:52:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 1
10:52:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 1
10:52:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 1
10:52:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 259 elements, expanding data 1
10:52:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:52:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 259 elements, expanding data 1
10:52:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:52:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 259 elements, expanding data 1
10:52:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:52:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 259 elements, expanding data 1
10:52:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:52:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
10:52:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
10:52:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
10:52:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 1
10:52:43 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 13:00:00, weight 0.96) and
after (2023-08-21 14:00:00, weight 0.04) in time
10:52:43 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.04440072289298 and -58.993036061851356 degrees.
10:52:43 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.04440072289298 and -58.993036061851356 degrees.
10:52:43 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:43 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:43 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:43 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:52:43 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:52:43 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:43 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.479064 (min) 1.07115 (max)
10:52:43 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.855134 (min) 0.430002 (max)
10:52:43 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000319489 (min) 0.000201323 (max)
10:52:43 DEBUG opendrift.models.basemodel:1524: x_wind: 0.46607 (min) 12.6823 (max)
10:52:43 DEBUG opendrift.models.basemodel:1524: y_wind: -1.00943 (min) 11.0894 (max)
10:52:43 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:52:43 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:52:43 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:52:43 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:52:43 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:52:43 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:52:43 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:52:43 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.46872 (min) 10.7049 (max)
10:52:43 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:43 DEBUG opendrift.models.basemodel:1527: 487 active elements
10:52:43 DEBUG opendrift.models.basemodel:1538: 59.144080992656505 <- latitude -> 59.17119255216251
10:52:43 DEBUG opendrift.models.basemodel:1543: 10.955609828020943 <- longitude -> 11.006974488373748
10:52:43 DEBUG opendrift.models.basemodel:1548: -9.695577712889271 <- z -> 0.0
10:52:43 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:43 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:52:43 DEBUG opendrift.models.physics_methods:940: min: 2.473052, mean: 6.889733, max: 12.200066
10:52:43 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 2.473052, mean: 6.889733, max: 12.200066
10:52:43 DEBUG opendrift.models.basemodel:813: 51 elements hit coastline, moving back to water
10:52:43 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:43 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:52:43 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:52:43 DEBUG opendrift.models.physics_methods:741: Advecting 39 of 487 elements above 0.100m with wind-sheared ocean current (0.023579 m/s - 0.254767 m/s)
10:52:43 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:52:43 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:52:43 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.18417737066848752
10:52:43 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:52:43 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:52:43 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:52:43 DEBUG opendrift.models.oceandrift:572: 67 elements penetrated seafloor, lifting up
10:52:43 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:43 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:43 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:43 DEBUG opendrift.models.oceandrift:572: 58 elements penetrated seafloor, lifting up
10:52:43 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:52:43 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:43 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:52:43 DEBUG opendrift.models.oceandrift:572: 64 elements penetrated seafloor, lifting up
10:52:43 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:43 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:43 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:43 DEBUG opendrift.models.oceandrift:572: 51 elements penetrated seafloor, lifting up
10:52:43 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:43 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:43 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:43 DEBUG opendrift.models.oceandrift:572: 67 elements penetrated seafloor, lifting up
10:52:43 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:43 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:43 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:43 DEBUG opendrift.models.oceandrift:572: 61 elements penetrated seafloor, lifting up
10:52:43 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:43 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:43 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:43 DEBUG opendrift.models.oceandrift:572: 56 elements penetrated seafloor, lifting up
10:52:43 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:52:43 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:52:43 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:52:43 DEBUG opendrift.models.oceandrift:572: 67 elements penetrated seafloor, lifting up
10:52:43 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:52:43 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:52:43 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:52:43 DEBUG opendrift.models.oceandrift:572: 52 elements penetrated seafloor, lifting up
10:52:43 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:43 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:43 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:43 DEBUG opendrift.models.oceandrift:572: 48 elements penetrated seafloor, lifting up
10:52:43 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:43 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:43 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:43 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:52:43 DEBUG opendrift.models.basemodel:2945: 487 active elements (0 deactivated)
10:52:43 DEBUG opendrift.models.basemodel:1658: to be seeded: 9513, already seeded 487
10:52:43 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:52:43 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:43 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:52:43 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:43 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:43 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:43 DEBUG opendrift.models.basemodel:1253: Data needed for 521 elements
10:52:43 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:43 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 13:00:00 (before)
2023-08-21 14:00:00 (after)
10:52:43 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 13:00:00) in space (linearNDFast)
10:52:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:43 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:52:43 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:43 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:43 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:43 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:43 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.5149 (min) 11.0459 (max)
10:52:43 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:43 DEBUG opendrift.models.basemodel:1527: 521 active elements
10:52:43 DEBUG opendrift.models.basemodel:1538: 59.14250899474991 <- latitude -> 59.1701344962571
10:52:43 DEBUG opendrift.models.basemodel:1543: 10.955382016583425 <- longitude -> 11.01004778047444
10:52:43 DEBUG opendrift.models.basemodel:1548: -9.73641882763092 <- z -> 0.0
10:52:43 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:43 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:52:43 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:52:43 INFO opendrift.models.basemodel:2882: 2023-08-21 13:12:19.552469 - step 15 of 216 - 521 active elements (0 deactivated)
10:52:43 DEBUG opendrift.models.basemodel:2888: 9479 elements scheduled.
10:52:43 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:52:43 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:43 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:52:43 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:43 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:52:43 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:43 DEBUG opendrift.models.basemodel:1253: Data needed for 521 elements
10:52:43 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:52:43 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:52:43 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:52:43 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:52:43 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:43 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:43 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:52:43 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:43 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:43 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:43 DEBUG opendrift.models.basemodel:1253: Data needed for 521 elements
10:52:43 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:43 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 13:00:00 (before)
2023-08-21 14:00:00 (after)
10:52:44 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:52:44 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:52:44 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:52:44 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:52:44 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:52:44 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:52:44 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x4) for time after (2023-08-21 14:00:00)
10:52:44 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 13:00:00) in space (linearNDFast)
10:52:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:44 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 14:00:00) in space (linearNDFast)
10:52:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
10:52:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
10:52:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
10:52:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
10:52:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
10:52:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 61 elements, expanding data 1
10:52:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 1
10:52:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
10:52:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 1
10:52:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
10:52:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 1
10:52:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
10:52:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 1
10:52:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
10:52:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
10:52:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
10:52:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
10:52:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 1
10:52:44 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 13:00:00, weight 0.79) and
after (2023-08-21 14:00:00, weight 0.21) in time
10:52:44 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0446285295823 and -58.98996277165658 degrees.
10:52:44 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0446285295823 and -58.98996277165658 degrees.
10:52:44 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:44 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:44 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:44 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:52:44 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:52:44 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:44 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.75191 (min) 0.996315 (max)
10:52:44 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.784505 (min) 0.566788 (max)
10:52:44 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000309436 (min) 0.00018371 (max)
10:52:44 DEBUG opendrift.models.basemodel:1524: x_wind: 0.0291928 (min) 12.9937 (max)
10:52:44 DEBUG opendrift.models.basemodel:1524: y_wind: -1.18116 (min) 10.7443 (max)
10:52:44 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:52:44 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:52:44 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:52:44 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:52:44 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:52:44 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:52:44 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:52:44 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.5149 (min) 11.0459 (max)
10:52:44 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:44 DEBUG opendrift.models.basemodel:1527: 521 active elements
10:52:44 DEBUG opendrift.models.basemodel:1538: 59.14250899474991 <- latitude -> 59.1701344962571
10:52:44 DEBUG opendrift.models.basemodel:1543: 10.955382016583425 <- longitude -> 11.01004778047444
10:52:44 DEBUG opendrift.models.basemodel:1548: -9.73641882763092 <- z -> 0.0
10:52:44 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:44 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:52:44 DEBUG opendrift.models.physics_methods:940: min: 1.657886, mean: 6.860478, max: 12.634607
10:52:44 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 1.657886, mean: 6.860478, max: 12.634607
10:52:44 DEBUG opendrift.models.basemodel:813: 59 elements hit coastline, moving back to water
10:52:44 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:52:44 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:52:44 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:52:44 DEBUG opendrift.models.physics_methods:741: Advecting 36 of 521 elements above 0.100m with wind-sheared ocean current (0.066321 m/s - 0.249928 m/s)
10:52:44 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:52:44 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:52:44 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.19753076457412716
10:52:44 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:52:44 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:52:44 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:52:44 DEBUG opendrift.models.oceandrift:572: 79 elements penetrated seafloor, lifting up
10:52:44 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:44 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:44 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:44 DEBUG opendrift.models.oceandrift:572: 66 elements penetrated seafloor, lifting up
10:52:44 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:52:44 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:52:44 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:52:44 DEBUG opendrift.models.oceandrift:572: 70 elements penetrated seafloor, lifting up
10:52:44 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:44 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:44 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:44 DEBUG opendrift.models.oceandrift:572: 57 elements penetrated seafloor, lifting up
10:52:44 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:52:44 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:52:44 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:52:44 DEBUG opendrift.models.oceandrift:572: 61 elements penetrated seafloor, lifting up
10:52:44 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:44 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:44 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:44 DEBUG opendrift.models.oceandrift:572: 59 elements penetrated seafloor, lifting up
10:52:44 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:52:44 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:44 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:52:44 DEBUG opendrift.models.oceandrift:572: 67 elements penetrated seafloor, lifting up
10:52:44 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:52:44 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:52:44 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:52:44 DEBUG opendrift.models.oceandrift:572: 72 elements penetrated seafloor, lifting up
10:52:44 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:52:44 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:52:44 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:52:44 DEBUG opendrift.models.oceandrift:572: 79 elements penetrated seafloor, lifting up
10:52:44 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:52:44 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:44 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:52:44 DEBUG opendrift.models.oceandrift:572: 75 elements penetrated seafloor, lifting up
10:52:44 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:44 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:44 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:44 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:52:44 DEBUG opendrift.models.basemodel:2945: 521 active elements (0 deactivated)
10:52:44 DEBUG opendrift.models.basemodel:1658: to be seeded: 9479, already seeded 521
10:52:44 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:52:44 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:44 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:52:44 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:44 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:44 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:44 DEBUG opendrift.models.basemodel:1253: Data needed for 556 elements
10:52:44 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:44 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 13:00:00 (before)
2023-08-21 14:00:00 (after)
10:52:44 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 13:00:00) in space (linearNDFast)
10:52:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:44 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:52:44 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:44 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:44 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:44 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:44 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.11857 (min) 10.9147 (max)
10:52:44 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:44 DEBUG opendrift.models.basemodel:1527: 556 active elements
10:52:44 DEBUG opendrift.models.basemodel:1538: 59.143154060294265 <- latitude -> 59.170121674531615
10:52:44 DEBUG opendrift.models.basemodel:1543: 10.95316899200042 <- longitude -> 11.015055426678947
10:52:44 DEBUG opendrift.models.basemodel:1548: -10.434211006164551 <- z -> 0.0
10:52:44 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:44 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:52:44 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:52:44 INFO opendrift.models.basemodel:2882: 2023-08-21 13:22:19.552469 - step 16 of 216 - 556 active elements (0 deactivated)
10:52:44 DEBUG opendrift.models.basemodel:2888: 9444 elements scheduled.
10:52:44 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:52:44 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:44 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:52:44 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:44 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:52:44 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:44 DEBUG opendrift.models.basemodel:1253: Data needed for 556 elements
10:52:44 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:52:44 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:52:44 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:52:44 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:52:44 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:44 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:44 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:52:44 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:44 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:44 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:44 DEBUG opendrift.models.basemodel:1253: Data needed for 556 elements
10:52:44 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:44 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 13:00:00 (before)
2023-08-21 14:00:00 (after)
10:52:45 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:52:45 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:52:45 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:52:45 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:52:45 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:52:45 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:52:45 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x5) for time after (2023-08-21 14:00:00)
10:52:45 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 13:00:00) in space (linearNDFast)
10:52:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:45 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 14:00:00) in space (linearNDFast)
10:52:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 289 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 289 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 289 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 289 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 289 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 1
10:52:45 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 13:00:00, weight 0.63) and
after (2023-08-21 14:00:00, weight 0.37) in time
10:52:45 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.04684156817585 and -58.98495512339477 degrees.
10:52:45 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.04684156817585 and -58.98495512339477 degrees.
10:52:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:45 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:45 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:45 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:52:45 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:52:45 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:45 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.590168 (min) 1.05001 (max)
10:52:45 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.930649 (min) 0.430313 (max)
10:52:45 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000252425 (min) 0.000200748 (max)
10:52:45 DEBUG opendrift.models.basemodel:1524: x_wind: 0.285531 (min) 11.2193 (max)
10:52:45 DEBUG opendrift.models.basemodel:1524: y_wind: -1.30474 (min) 12.6351 (max)
10:52:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:52:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:52:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:52:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:52:45 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:52:45 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:52:45 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:52:45 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.11857 (min) 10.9147 (max)
10:52:45 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:45 DEBUG opendrift.models.basemodel:1527: 556 active elements
10:52:45 DEBUG opendrift.models.basemodel:1538: 59.143154060294265 <- latitude -> 59.170121674531615
10:52:45 DEBUG opendrift.models.basemodel:1543: 10.95316899200042 <- longitude -> 11.015055426678947
10:52:45 DEBUG opendrift.models.basemodel:1548: -10.434211006164551 <- z -> 0.0
10:52:45 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:45 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:52:45 DEBUG opendrift.models.physics_methods:940: min: 2.163593, mean: 6.942954, max: 12.302569
10:52:45 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 2.163593, mean: 6.942954, max: 12.302569
10:52:45 DEBUG opendrift.models.basemodel:813: 53 elements hit coastline, moving back to water
10:52:45 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:45 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:52:45 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:52:45 DEBUG opendrift.models.physics_methods:741: Advecting 37 of 556 elements above 0.100m with wind-sheared ocean current (0.064163 m/s - 0.250102 m/s)
10:52:45 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:52:45 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:52:45 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.1872851752892303
10:52:45 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:52:45 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:52:45 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:52:45 DEBUG opendrift.models.oceandrift:572: 83 elements penetrated seafloor, lifting up
10:52:45 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:52:45 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:52:45 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:52:45 DEBUG opendrift.models.oceandrift:572: 74 elements penetrated seafloor, lifting up
10:52:45 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:45 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:45 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:45 DEBUG opendrift.models.oceandrift:572: 85 elements penetrated seafloor, lifting up
10:52:45 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:52:45 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:52:45 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:52:45 DEBUG opendrift.models.oceandrift:572: 72 elements penetrated seafloor, lifting up
10:52:45 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:45 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:45 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:45 DEBUG opendrift.models.oceandrift:572: 70 elements penetrated seafloor, lifting up
10:52:45 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:52:45 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:52:45 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:52:45 DEBUG opendrift.models.oceandrift:572: 67 elements penetrated seafloor, lifting up
10:52:45 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:45 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:45 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:45 DEBUG opendrift.models.oceandrift:572: 69 elements penetrated seafloor, lifting up
10:52:45 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:45 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:45 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:45 DEBUG opendrift.models.oceandrift:572: 60 elements penetrated seafloor, lifting up
10:52:45 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:52:45 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:52:45 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:52:45 DEBUG opendrift.models.oceandrift:572: 61 elements penetrated seafloor, lifting up
10:52:45 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:52:45 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:45 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:52:45 DEBUG opendrift.models.oceandrift:572: 68 elements penetrated seafloor, lifting up
10:52:45 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:52:45 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:45 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:52:45 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:52:45 DEBUG opendrift.models.basemodel:2945: 556 active elements (0 deactivated)
10:52:45 DEBUG opendrift.models.basemodel:1658: to be seeded: 9444, already seeded 556
10:52:45 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:52:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:45 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:52:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:45 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:45 DEBUG opendrift.models.basemodel:1253: Data needed for 591 elements
10:52:45 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:45 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 13:00:00 (before)
2023-08-21 14:00:00 (after)
10:52:45 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 13:00:00) in space (linearNDFast)
10:52:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:45 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:52:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:45 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:45 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:45 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:45 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.98299 (min) 11.1288 (max)
10:52:45 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:45 DEBUG opendrift.models.basemodel:1527: 591 active elements
10:52:45 DEBUG opendrift.models.basemodel:1538: 59.142855204792745 <- latitude -> 59.16981533639937
10:52:45 DEBUG opendrift.models.basemodel:1543: 10.953044636894537 <- longitude -> 11.013324941732492
10:52:45 DEBUG opendrift.models.basemodel:1548: -10.09298252105713 <- z -> 0.0
10:52:45 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:45 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:52:45 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:52:45 INFO opendrift.models.basemodel:2882: 2023-08-21 13:32:19.552469 - step 17 of 216 - 591 active elements (0 deactivated)
10:52:45 DEBUG opendrift.models.basemodel:2888: 9409 elements scheduled.
10:52:45 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:52:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:45 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:52:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:45 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:52:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:45 DEBUG opendrift.models.basemodel:1253: Data needed for 591 elements
10:52:45 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:52:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:52:45 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:52:45 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:52:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:45 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:52:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:45 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:45 DEBUG opendrift.models.basemodel:1253: Data needed for 591 elements
10:52:45 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:45 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 13:00:00 (before)
2023-08-21 14:00:00 (after)
10:52:45 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:52:45 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:52:45 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:52:45 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:52:45 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:52:45 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:52:45 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 17x18x5) for time after (2023-08-21 14:00:00)
10:52:45 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 13:00:00) in space (linearNDFast)
10:52:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:45 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 14:00:00) in space (linearNDFast)
10:52:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 59 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 318 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 318 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 318 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 318 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 318 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 1
10:52:45 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 13:00:00, weight 0.46) and
after (2023-08-21 14:00:00, weight 0.54) in time
10:52:45 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.04696592066058 and -58.986685598665495 degrees.
10:52:45 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.04696592066058 and -58.986685598665495 degrees.
10:52:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:45 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:45 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:45 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:52:45 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:52:45 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:45 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.641966 (min) 1.10424 (max)
10:52:45 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.796647 (min) 0.542684 (max)
10:52:45 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000173619 (min) 0.000151382 (max)
10:52:45 DEBUG opendrift.models.basemodel:1524: x_wind: -0.631872 (min) 12.2486 (max)
10:52:45 DEBUG opendrift.models.basemodel:1524: y_wind: -0.399499 (min) 10.5094 (max)
10:52:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:52:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:52:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:52:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:52:45 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:52:45 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:52:45 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:52:45 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.98299 (min) 11.1288 (max)
10:52:45 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:45 DEBUG opendrift.models.basemodel:1527: 591 active elements
10:52:45 DEBUG opendrift.models.basemodel:1538: 59.142855204792745 <- latitude -> 59.16981533639937
10:52:45 DEBUG opendrift.models.basemodel:1543: 10.953044636894537 <- longitude -> 11.013324941732492
10:52:45 DEBUG opendrift.models.basemodel:1548: -10.09298252105713 <- z -> 0.0
10:52:45 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:45 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:52:45 DEBUG opendrift.models.physics_methods:940: min: 0.547493, mean: 7.058022, max: 11.678813
10:52:45 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.547493, mean: 7.058022, max: 11.678813
10:52:45 DEBUG opendrift.models.basemodel:813: 35 elements hit coastline, moving back to water
10:52:45 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:52:45 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:52:45 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:52:45 DEBUG opendrift.models.physics_methods:741: Advecting 39 of 591 elements above 0.100m with wind-sheared ocean current (0.029241 m/s - 0.232427 m/s)
10:52:45 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:52:45 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:52:45 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.1687758476067352
10:52:45 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:52:45 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:52:45 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:52:45 DEBUG opendrift.models.oceandrift:572: 95 elements penetrated seafloor, lifting up
10:52:45 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:52:45 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:52:45 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:52:45 DEBUG opendrift.models.oceandrift:572: 70 elements penetrated seafloor, lifting up
10:52:45 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:52:45 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:52:45 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:52:45 DEBUG opendrift.models.oceandrift:572: 75 elements penetrated seafloor, lifting up
10:52:45 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:52:45 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:45 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:52:45 DEBUG opendrift.models.oceandrift:572: 78 elements penetrated seafloor, lifting up
10:52:45 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:52:45 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:52:45 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:52:45 DEBUG opendrift.models.oceandrift:572: 74 elements penetrated seafloor, lifting up
10:52:45 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:52:45 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:52:45 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:52:45 DEBUG opendrift.models.oceandrift:572: 74 elements penetrated seafloor, lifting up
10:52:45 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:52:45 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:52:45 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:52:45 DEBUG opendrift.models.oceandrift:572: 64 elements penetrated seafloor, lifting up
10:52:45 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:52:45 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:45 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:52:45 DEBUG opendrift.models.oceandrift:572: 74 elements penetrated seafloor, lifting up
10:52:45 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:45 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:45 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:45 DEBUG opendrift.models.oceandrift:572: 81 elements penetrated seafloor, lifting up
10:52:45 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:45 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:45 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:45 DEBUG opendrift.models.oceandrift:572: 77 elements penetrated seafloor, lifting up
10:52:45 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:52:45 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:52:45 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:52:45 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:52:45 DEBUG opendrift.models.basemodel:2945: 591 active elements (0 deactivated)
10:52:45 DEBUG opendrift.models.basemodel:1658: to be seeded: 9409, already seeded 591
10:52:45 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:52:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:45 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:52:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:45 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:45 DEBUG opendrift.models.basemodel:1253: Data needed for 625 elements
10:52:45 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:45 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 13:00:00 (before)
2023-08-21 14:00:00 (after)
10:52:45 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 13:00:00) in space (linearNDFast)
10:52:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:52:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:52:45 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:52:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:45 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:45 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:45 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:45 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.76111 (min) 11.5009 (max)
10:52:45 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:45 DEBUG opendrift.models.basemodel:1527: 625 active elements
10:52:45 DEBUG opendrift.models.basemodel:1538: 59.14029506402806 <- latitude -> 59.171683248437915
10:52:45 DEBUG opendrift.models.basemodel:1543: 10.95279280363634 <- longitude -> 11.016262391792752
10:52:45 DEBUG opendrift.models.basemodel:1548: -11.038994064331055 <- z -> 0.0
10:52:45 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:45 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:52:45 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:52:45 INFO opendrift.models.basemodel:2882: 2023-08-21 13:42:19.552469 - step 18 of 216 - 625 active elements (0 deactivated)
10:52:45 DEBUG opendrift.models.basemodel:2888: 9375 elements scheduled.
10:52:45 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:52:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:45 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:52:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:45 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:52:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:45 DEBUG opendrift.models.basemodel:1253: Data needed for 625 elements
10:52:45 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:52:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:52:45 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:52:45 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:52:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:45 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:52:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:45 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:45 DEBUG opendrift.models.basemodel:1253: Data needed for 625 elements
10:52:45 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:45 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 13:00:00 (before)
2023-08-21 14:00:00 (after)
10:52:46 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:52:46 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:52:46 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:52:46 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:52:46 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:52:46 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:52:46 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 18x18x5) for time after (2023-08-21 14:00:00)
10:52:46 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 13:00:00) in space (linearNDFast)
10:52:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:46 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 14:00:00) in space (linearNDFast)
10:52:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 1
10:52:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 1
10:52:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
10:52:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:52:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
10:52:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:52:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
10:52:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:52:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
10:52:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:52:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 1
10:52:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:52:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 323 elements, expanding data 1
10:52:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
10:52:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 323 elements, expanding data 1
10:52:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
10:52:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 323 elements, expanding data 1
10:52:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
10:52:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 323 elements, expanding data 1
10:52:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
10:52:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 323 elements, expanding data 1
10:52:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
10:52:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 1
10:52:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 1
10:52:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 1
10:52:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 1
10:52:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 1
10:52:46 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 13:00:00, weight 0.29) and
after (2023-08-21 14:00:00, weight 0.71) in time
10:52:46 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0472177507879 and -58.98374815821749 degrees.
10:52:46 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0472177507879 and -58.98374815821749 degrees.
10:52:46 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:46 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:46 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:46 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:52:46 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:52:46 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:46 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.554727 (min) 1.16438 (max)
10:52:46 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.977523 (min) 0.509331 (max)
10:52:46 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000325479 (min) 0.000164551 (max)
10:52:46 DEBUG opendrift.models.basemodel:1524: x_wind: 1.39578 (min) 12.7805 (max)
10:52:46 DEBUG opendrift.models.basemodel:1524: y_wind: -0.728682 (min) 10.6281 (max)
10:52:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:52:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:52:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:52:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:52:46 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:52:46 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:52:46 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:52:46 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.76111 (min) 11.5009 (max)
10:52:46 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:46 DEBUG opendrift.models.basemodel:1527: 625 active elements
10:52:46 DEBUG opendrift.models.basemodel:1538: 59.14029506402806 <- latitude -> 59.171683248437915
10:52:46 DEBUG opendrift.models.basemodel:1543: 10.95279280363634 <- longitude -> 11.016262391792752
10:52:46 DEBUG opendrift.models.basemodel:1548: -11.038994064331055 <- z -> 0.0
10:52:46 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:46 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:52:46 DEBUG opendrift.models.physics_methods:940: min: 1.946387, mean: 7.208586, max: 12.911824
10:52:46 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 1.946387, mean: 7.208586, max: 12.911824
10:52:46 DEBUG opendrift.models.basemodel:813: 46 elements hit coastline, moving back to water
10:52:46 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:46 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:52:46 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:52:46 DEBUG opendrift.models.physics_methods:741: Advecting 37 of 625 elements above 0.100m with wind-sheared ocean current (0.039457 m/s - 0.254403 m/s)
10:52:46 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:52:46 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:52:46 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.20629379690940855
10:52:46 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:52:46 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:52:46 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:52:46 DEBUG opendrift.models.oceandrift:572: 90 elements penetrated seafloor, lifting up
10:52:46 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:52:46 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:52:46 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:52:46 DEBUG opendrift.models.oceandrift:572: 83 elements penetrated seafloor, lifting up
10:52:46 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:52:46 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:52:46 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:52:46 DEBUG opendrift.models.oceandrift:572: 76 elements penetrated seafloor, lifting up
10:52:46 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:52:46 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:52:46 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:52:46 DEBUG opendrift.models.oceandrift:572: 71 elements penetrated seafloor, lifting up
10:52:46 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:52:46 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:52:46 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:52:46 DEBUG opendrift.models.oceandrift:572: 67 elements penetrated seafloor, lifting up
10:52:46 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:52:46 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:46 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:52:46 DEBUG opendrift.models.oceandrift:572: 69 elements penetrated seafloor, lifting up
10:52:46 DEBUG opendrift.models.oceandrift:590: 1 elements reached seafloor, set to bottom
10:52:46 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:46 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
10:52:46 DEBUG opendrift.models.oceandrift:572: 84 elements penetrated seafloor, lifting up
10:52:46 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:46 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:46 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:46 DEBUG opendrift.models.oceandrift:572: 81 elements penetrated seafloor, lifting up
10:52:46 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:52:46 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:52:46 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:52:46 DEBUG opendrift.models.oceandrift:572: 82 elements penetrated seafloor, lifting up
10:52:46 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:52:46 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:46 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:52:46 DEBUG opendrift.models.oceandrift:572: 73 elements penetrated seafloor, lifting up
10:52:46 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:46 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:46 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:46 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:52:46 DEBUG opendrift.models.basemodel:2945: 625 active elements (0 deactivated)
10:52:46 DEBUG opendrift.models.basemodel:1658: to be seeded: 9375, already seeded 625
10:52:46 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:52:46 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:46 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:52:46 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:46 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:46 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:46 DEBUG opendrift.models.basemodel:1253: Data needed for 660 elements
10:52:46 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:46 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 13:00:00 (before)
2023-08-21 14:00:00 (after)
10:52:46 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 13:00:00) in space (linearNDFast)
10:52:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:46 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:52:46 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:46 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:46 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:46 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:46 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.88927 (min) 12.1259 (max)
10:52:46 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:46 DEBUG opendrift.models.basemodel:1527: 660 active elements
10:52:46 DEBUG opendrift.models.basemodel:1538: 59.13845675694796 <- latitude -> 59.17158113439022
10:52:46 DEBUG opendrift.models.basemodel:1543: 10.95062016932972 <- longitude -> 11.015668271318512
10:52:46 DEBUG opendrift.models.basemodel:1548: -11.49089454650879 <- z -> 0.0
10:52:46 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:46 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
10:52:46 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:52:46 INFO opendrift.models.basemodel:2882: 2023-08-21 13:52:19.552469 - step 19 of 216 - 660 active elements (0 deactivated)
10:52:46 DEBUG opendrift.models.basemodel:2888: 9340 elements scheduled.
10:52:46 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:52:46 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:46 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:52:46 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:46 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:52:46 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:46 DEBUG opendrift.models.basemodel:1253: Data needed for 660 elements
10:52:46 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:52:46 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:52:46 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:52:46 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:52:46 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:46 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:46 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:52:46 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:46 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:46 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:46 DEBUG opendrift.models.basemodel:1253: Data needed for 660 elements
10:52:46 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:46 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 13:00:00 (before)
2023-08-21 14:00:00 (after)
10:52:50 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:52:50 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:52:50 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:52:50 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:52:50 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:52:50 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:52:50 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 19x18x5) for time after (2023-08-21 14:00:00)
10:52:50 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 13:00:00) in space (linearNDFast)
10:52:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:50 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 14:00:00) in space (linearNDFast)
10:52:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 1
10:52:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 1
10:52:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
10:52:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:52:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
10:52:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:52:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
10:52:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:52:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
10:52:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:52:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 1
10:52:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:52:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 344 elements, expanding data 1
10:52:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
10:52:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 344 elements, expanding data 1
10:52:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
10:52:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 344 elements, expanding data 1
10:52:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
10:52:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 344 elements, expanding data 1
10:52:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
10:52:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 344 elements, expanding data 1
10:52:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
10:52:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 1
10:52:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 1
10:52:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 1
10:52:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 1
10:52:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 1
10:52:50 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 13:00:00, weight 0.13) and
after (2023-08-21 14:00:00, weight 0.87) in time
10:52:50 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0493903832527 and -58.98434227504672 degrees.
10:52:50 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0493903832527 and -58.98434227504672 degrees.
10:52:50 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:50 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:50 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:50 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:52:50 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:52:50 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:50 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.566507 (min) 1.08305 (max)
10:52:50 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.780599 (min) 0.423971 (max)
10:52:50 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000327192 (min) 0.000240477 (max)
10:52:50 DEBUG opendrift.models.basemodel:1524: x_wind: 0.624371 (min) 12.2329 (max)
10:52:50 DEBUG opendrift.models.basemodel:1524: y_wind: -0.510715 (min) 11.2213 (max)
10:52:50 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:52:50 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:52:50 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:52:50 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:52:50 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:52:50 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:52:50 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:52:50 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.88927 (min) 12.1259 (max)
10:52:50 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:50 DEBUG opendrift.models.basemodel:1527: 660 active elements
10:52:50 DEBUG opendrift.models.basemodel:1538: 59.13845675694796 <- latitude -> 59.17158113439022
10:52:50 DEBUG opendrift.models.basemodel:1543: 10.95062016932972 <- longitude -> 11.015668271318512
10:52:50 DEBUG opendrift.models.basemodel:1548: -11.280247688293457 <- z -> 0.0
10:52:50 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:50 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:52:50 DEBUG opendrift.models.physics_methods:940: min: 2.149933, mean: 7.273324, max: 12.600579
10:52:50 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 2.149933, mean: 7.273324, max: 12.600579
10:52:50 DEBUG opendrift.models.basemodel:813: 51 elements hit coastline, moving back to water
10:52:50 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:52:50 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:52:50 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:52:50 DEBUG opendrift.models.physics_methods:741: Advecting 38 of 660 elements above 0.100m with wind-sheared ocean current (0.043656 m/s - 0.228359 m/s)
10:52:50 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:52:50 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:52:50 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.1964682642498779
10:52:50 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:52:50 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:52:50 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:52:50 DEBUG opendrift.models.oceandrift:572: 94 elements penetrated seafloor, lifting up
10:52:50 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:52:50 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:52:50 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:52:50 DEBUG opendrift.models.oceandrift:572: 71 elements penetrated seafloor, lifting up
10:52:50 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:52:50 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:52:50 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:52:50 DEBUG opendrift.models.oceandrift:572: 84 elements penetrated seafloor, lifting up
10:52:50 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:52:50 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:52:50 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:52:50 DEBUG opendrift.models.oceandrift:572: 82 elements penetrated seafloor, lifting up
10:52:50 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:50 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:50 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:50 DEBUG opendrift.models.oceandrift:572: 64 elements penetrated seafloor, lifting up
10:52:50 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:52:50 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:50 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:52:50 DEBUG opendrift.models.oceandrift:572: 69 elements penetrated seafloor, lifting up
10:52:50 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:50 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:50 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:50 DEBUG opendrift.models.oceandrift:572: 81 elements penetrated seafloor, lifting up
10:52:50 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:52:50 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:50 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:52:50 DEBUG opendrift.models.oceandrift:572: 74 elements penetrated seafloor, lifting up
10:52:50 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:52:50 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:52:50 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:52:50 DEBUG opendrift.models.oceandrift:572: 70 elements penetrated seafloor, lifting up
10:52:50 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:52:50 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:50 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:52:50 DEBUG opendrift.models.oceandrift:572: 83 elements penetrated seafloor, lifting up
10:52:50 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:52:50 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:52:50 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:52:50 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:52:50 DEBUG opendrift.models.basemodel:2945: 660 active elements (0 deactivated)
10:52:50 DEBUG opendrift.models.basemodel:1658: to be seeded: 9340, already seeded 660
10:52:50 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:52:50 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:50 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:52:50 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:50 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:50 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:50 DEBUG opendrift.models.basemodel:1253: Data needed for 695 elements
10:52:50 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:50 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 14:00:00 (before)
2023-08-21 15:00:00 (after)
10:52:50 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 14:00:00) in space (linearNDFast)
10:52:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:50 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:52:50 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:50 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:50 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:50 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:50 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.40399 (min) 12.2581 (max)
10:52:50 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:50 DEBUG opendrift.models.basemodel:1527: 695 active elements
10:52:50 DEBUG opendrift.models.basemodel:1538: 59.13877358720296 <- latitude -> 59.17193828242483
10:52:50 DEBUG opendrift.models.basemodel:1543: 10.947630126429221 <- longitude -> 11.020726999341607
10:52:50 DEBUG opendrift.models.basemodel:1548: -11.119206619005611 <- z -> 0.0
10:52:50 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:50 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
10:52:50 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:52:50 INFO opendrift.models.basemodel:2882: 2023-08-21 14:02:19.552469 - step 20 of 216 - 695 active elements (0 deactivated)
10:52:50 DEBUG opendrift.models.basemodel:2888: 9305 elements scheduled.
10:52:50 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:52:50 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:50 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:52:50 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:50 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:52:50 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:50 DEBUG opendrift.models.basemodel:1253: Data needed for 695 elements
10:52:50 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:52:50 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:52:50 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:52:50 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:52:50 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:50 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:50 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:52:50 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:50 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:50 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:50 DEBUG opendrift.models.basemodel:1253: Data needed for 695 elements
10:52:50 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:50 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 14:00:00 (before)
2023-08-21 15:00:00 (after)
10:52:51 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:52:51 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:52:51 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:52:51 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:52:51 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:52:51 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:52:51 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 19x18x5) for time after (2023-08-21 15:00:00)
10:52:51 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 14:00:00) in space (linearNDFast)
10:52:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:51 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 15:00:00) in space (linearNDFast)
10:52:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
10:52:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
10:52:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 1
10:52:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:52:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 1
10:52:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:52:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 1
10:52:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:52:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 1
10:52:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:52:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 84 elements, expanding data 1
10:52:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:52:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 372 elements, expanding data 1
10:52:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:52:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 372 elements, expanding data 1
10:52:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:52:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 372 elements, expanding data 1
10:52:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:52:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 372 elements, expanding data 1
10:52:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:52:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 372 elements, expanding data 1
10:52:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:52:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
10:52:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
10:52:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
10:52:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
10:52:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
10:52:51 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 14:00:00, weight 0.96) and
after (2023-08-21 15:00:00, weight 0.04) in time
10:52:51 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05238042825486 and -58.97928354680727 degrees.
10:52:51 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05238042825486 and -58.97928354680727 degrees.
10:52:51 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:51 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:51 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:51 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:52:51 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:52:51 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:51 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.63098 (min) 1.06344 (max)
10:52:51 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.852908 (min) 0.540446 (max)
10:52:51 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000402508 (min) 0.00023544 (max)
10:52:51 DEBUG opendrift.models.basemodel:1524: x_wind: 0.188848 (min) 11.803 (max)
10:52:51 DEBUG opendrift.models.basemodel:1524: y_wind: -1.66657 (min) 11.5015 (max)
10:52:51 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:52:51 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:52:51 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:52:51 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:52:51 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:52:51 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:52:51 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:52:51 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.40399 (min) 12.2581 (max)
10:52:51 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:51 DEBUG opendrift.models.basemodel:1527: 695 active elements
10:52:51 DEBUG opendrift.models.basemodel:1538: 59.13877358720296 <- latitude -> 59.17193828242483
10:52:51 DEBUG opendrift.models.basemodel:1543: 10.947630126429221 <- longitude -> 11.020726999341607
10:52:51 DEBUG opendrift.models.basemodel:1548: -11.119206619005611 <- z -> 0.0
10:52:51 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:51 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:52:51 DEBUG opendrift.models.physics_methods:940: min: 2.405617, mean: 7.431620, max: 12.553426
10:52:51 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 2.405617, mean: 7.431620, max: 12.553426
10:52:51 DEBUG opendrift.models.basemodel:813: 59 elements hit coastline, moving back to water
10:52:51 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:51 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:52:51 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:52:51 DEBUG opendrift.models.physics_methods:741: Advecting 36 of 695 elements above 0.100m with wind-sheared ocean current (0.059750 m/s - 0.217493 m/s)
10:52:51 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:52:51 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:52:51 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.1950006084347534
10:52:51 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:52:51 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:52:51 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:52:51 DEBUG opendrift.models.oceandrift:572: 105 elements penetrated seafloor, lifting up
10:52:51 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:52:51 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:52:51 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:52:51 DEBUG opendrift.models.oceandrift:572: 93 elements penetrated seafloor, lifting up
10:52:51 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:52:51 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:52:51 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:52:51 DEBUG opendrift.models.oceandrift:572: 79 elements penetrated seafloor, lifting up
10:52:51 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:52:51 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:52:51 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:52:51 DEBUG opendrift.models.oceandrift:572: 89 elements penetrated seafloor, lifting up
10:52:51 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:52:51 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:52:51 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:52:51 DEBUG opendrift.models.oceandrift:572: 82 elements penetrated seafloor, lifting up
10:52:51 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:52:51 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:52:51 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:52:51 DEBUG opendrift.models.oceandrift:572: 81 elements penetrated seafloor, lifting up
10:52:51 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:52:51 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:52:51 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:52:51 DEBUG opendrift.models.oceandrift:572: 85 elements penetrated seafloor, lifting up
10:52:51 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:52:51 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:51 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:52:51 DEBUG opendrift.models.oceandrift:572: 105 elements penetrated seafloor, lifting up
10:52:51 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:52:51 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:52:51 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:52:51 DEBUG opendrift.models.oceandrift:572: 87 elements penetrated seafloor, lifting up
10:52:51 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:51 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:51 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:51 DEBUG opendrift.models.oceandrift:572: 96 elements penetrated seafloor, lifting up
10:52:51 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:52:51 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:52:51 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:52:51 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:52:51 DEBUG opendrift.models.basemodel:2945: 695 active elements (0 deactivated)
10:52:51 DEBUG opendrift.models.basemodel:1658: to be seeded: 9305, already seeded 695
10:52:51 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:52:51 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:51 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:52:51 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:51 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:51 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:51 DEBUG opendrift.models.basemodel:1253: Data needed for 730 elements
10:52:51 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:51 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 14:00:00 (before)
2023-08-21 15:00:00 (after)
10:52:51 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 14:00:00) in space (linearNDFast)
10:52:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:51 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:52:51 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:51 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:51 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:51 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:51 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.07523 (min) 12.1961 (max)
10:52:51 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:51 DEBUG opendrift.models.basemodel:1527: 730 active elements
10:52:51 DEBUG opendrift.models.basemodel:1538: 59.138802881363944 <- latitude -> 59.174849151546134
10:52:51 DEBUG opendrift.models.basemodel:1543: 10.952125586431348 <- longitude -> 11.01519610472648
10:52:51 DEBUG opendrift.models.basemodel:1548: -11.22094470017264 <- z -> 0.0
10:52:51 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:51 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
10:52:51 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:52:51 INFO opendrift.models.basemodel:2882: 2023-08-21 14:12:19.552469 - step 21 of 216 - 730 active elements (0 deactivated)
10:52:51 DEBUG opendrift.models.basemodel:2888: 9270 elements scheduled.
10:52:51 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:52:51 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:51 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:52:51 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:51 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:52:51 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:51 DEBUG opendrift.models.basemodel:1253: Data needed for 730 elements
10:52:51 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:52:51 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:52:51 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:52:51 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:52:51 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:51 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:51 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:52:51 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:51 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:51 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:51 DEBUG opendrift.models.basemodel:1253: Data needed for 730 elements
10:52:51 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:51 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 14:00:00 (before)
2023-08-21 15:00:00 (after)
10:52:52 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:52:52 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:52:52 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:52:52 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:52:52 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:52:52 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:52:52 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 19x18x5) for time after (2023-08-21 15:00:00)
10:52:52 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 14:00:00) in space (linearNDFast)
10:52:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:52 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 15:00:00) in space (linearNDFast)
10:52:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
10:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
10:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1
10:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1
10:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1
10:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1
10:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 1
10:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 400 elements, expanding data 1
10:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 400 elements, expanding data 1
10:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 400 elements, expanding data 1
10:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 400 elements, expanding data 1
10:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 400 elements, expanding data 1
10:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
10:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
10:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
10:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
10:52:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 1
10:52:52 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 14:00:00, weight 0.79) and
after (2023-08-21 15:00:00, weight 0.21) in time
10:52:52 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.04788496121844 and -58.98481444689353 degrees.
10:52:52 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.04788496121844 and -58.98481444689353 degrees.
10:52:52 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:52 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:52 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:52 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:52:52 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:52:52 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:52 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.664265 (min) 1.26556 (max)
10:52:52 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.841063 (min) 0.540592 (max)
10:52:52 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000426875 (min) 0.000249887 (max)
10:52:52 DEBUG opendrift.models.basemodel:1524: x_wind: -0.597565 (min) 13.6514 (max)
10:52:52 DEBUG opendrift.models.basemodel:1524: y_wind: -0.953764 (min) 11.1441 (max)
10:52:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:52:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:52:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:52:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:52:52 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:52:52 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:52:52 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:52:52 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 6.07523 (min) 12.1961 (max)
10:52:52 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:52 DEBUG opendrift.models.basemodel:1527: 730 active elements
10:52:52 DEBUG opendrift.models.basemodel:1538: 59.138802881363944 <- latitude -> 59.174849151546134
10:52:52 DEBUG opendrift.models.basemodel:1543: 10.952125586431348 <- longitude -> 11.01519610472648
10:52:52 DEBUG opendrift.models.basemodel:1548: -11.22094470017264 <- z -> 0.0
10:52:52 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:52 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:52:52 DEBUG opendrift.models.physics_methods:940: min: 2.302986, mean: 7.521130, max: 13.729637
10:52:52 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 2.302986, mean: 7.521130, max: 13.729637
10:52:52 DEBUG opendrift.models.basemodel:813: 48 elements hit coastline, moving back to water
10:52:52 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:52:52 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:52:52 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:52:52 DEBUG opendrift.models.physics_methods:741: Advecting 39 of 730 elements above 0.100m with wind-sheared ocean current (0.012653 m/s - 0.229237 m/s)
10:52:52 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:52:52 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:52:52 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.2332534802780914
10:52:52 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:52:52 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:52:52 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:52:52 DEBUG opendrift.models.oceandrift:572: 112 elements penetrated seafloor, lifting up
10:52:52 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:52:52 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:52:52 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:52:52 DEBUG opendrift.models.oceandrift:572: 101 elements penetrated seafloor, lifting up
10:52:52 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:52:52 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:52:52 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:52:52 DEBUG opendrift.models.oceandrift:572: 93 elements penetrated seafloor, lifting up
10:52:52 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:52:52 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:52:52 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:52:52 DEBUG opendrift.models.oceandrift:572: 88 elements penetrated seafloor, lifting up
10:52:52 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:52:52 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:52:52 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:52:52 DEBUG opendrift.models.oceandrift:572: 94 elements penetrated seafloor, lifting up
10:52:52 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:52:52 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:52:52 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:52:52 DEBUG opendrift.models.oceandrift:572: 73 elements penetrated seafloor, lifting up
10:52:52 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:52 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:52 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:52 DEBUG opendrift.models.oceandrift:572: 95 elements penetrated seafloor, lifting up
10:52:52 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:52:52 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:52:52 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:52:52 DEBUG opendrift.models.oceandrift:572: 95 elements penetrated seafloor, lifting up
10:52:52 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:52 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:52 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:52 DEBUG opendrift.models.oceandrift:572: 94 elements penetrated seafloor, lifting up
10:52:52 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:52:52 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:52:52 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:52:52 DEBUG opendrift.models.oceandrift:572: 92 elements penetrated seafloor, lifting up
10:52:52 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:52:52 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:52:52 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:52:52 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:52:52 DEBUG opendrift.models.basemodel:2945: 730 active elements (0 deactivated)
10:52:52 DEBUG opendrift.models.basemodel:1658: to be seeded: 9270, already seeded 730
10:52:52 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:52:52 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:52 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:52:52 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:52 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:52 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:52 DEBUG opendrift.models.basemodel:1253: Data needed for 764 elements
10:52:52 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:52 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 14:00:00 (before)
2023-08-21 15:00:00 (after)
10:52:52 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 14:00:00) in space (linearNDFast)
10:52:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:52 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:52:52 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:52 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:52 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:52 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:52 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.84951 (min) 12.353 (max)
10:52:52 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:52 DEBUG opendrift.models.basemodel:1527: 764 active elements
10:52:52 DEBUG opendrift.models.basemodel:1538: 59.138036400031694 <- latitude -> 59.17461974279312
10:52:52 DEBUG opendrift.models.basemodel:1543: 10.951989946891214 <- longitude -> 11.014095961172542
10:52:52 DEBUG opendrift.models.basemodel:1548: -11.716011276245117 <- z -> 0.0
10:52:52 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:52 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
10:52:52 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:52:52 INFO opendrift.models.basemodel:2882: 2023-08-21 14:22:19.552469 - step 22 of 216 - 764 active elements (0 deactivated)
10:52:52 DEBUG opendrift.models.basemodel:2888: 9236 elements scheduled.
10:52:52 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:52:52 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:52 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:52:52 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:52 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:52:52 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:52 DEBUG opendrift.models.basemodel:1253: Data needed for 764 elements
10:52:52 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:52:52 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:52:52 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:52:52 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:52:52 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:52 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:52 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:52:52 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:52 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:52 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:52 DEBUG opendrift.models.basemodel:1253: Data needed for 764 elements
10:52:52 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:52 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 14:00:00 (before)
2023-08-21 15:00:00 (after)
10:52:53 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:52:53 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:52:53 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:52:53 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:52:53 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:52:53 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:52:53 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 19x18x5) for time after (2023-08-21 15:00:00)
10:52:53 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 14:00:00) in space (linearNDFast)
10:52:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:53 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 15:00:00) in space (linearNDFast)
10:52:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
10:52:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
10:52:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 1
10:52:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
10:52:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 1
10:52:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
10:52:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 1
10:52:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
10:52:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 1
10:52:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
10:52:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 1
10:52:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
10:52:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 415 elements, expanding data 1
10:52:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:52:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 415 elements, expanding data 1
10:52:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:52:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 415 elements, expanding data 1
10:52:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:52:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 415 elements, expanding data 1
10:52:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:52:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 415 elements, expanding data 1
10:52:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:52:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
10:52:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
10:52:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
10:52:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
10:52:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 1
10:52:53 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 14:00:00, weight 0.63) and
after (2023-08-21 15:00:00, weight 0.37) in time
10:52:53 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.048020607601856 and -58.985914585482725 degrees.
10:52:53 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.048020607601856 and -58.985914585482725 degrees.
10:52:53 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:53 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:53 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:53 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:52:53 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:52:53 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:53 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.610177 (min) 0.912257 (max)
10:52:53 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.77467 (min) 0.596227 (max)
10:52:53 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000419125 (min) 0.000263123 (max)
10:52:53 DEBUG opendrift.models.basemodel:1524: x_wind: 1.4652 (min) 13.7411 (max)
10:52:53 DEBUG opendrift.models.basemodel:1524: y_wind: -1.77238 (min) 10.8501 (max)
10:52:53 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:52:53 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:52:53 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:52:53 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:52:53 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:52:53 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:52:53 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:52:53 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.84951 (min) 12.353 (max)
10:52:53 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:53 DEBUG opendrift.models.basemodel:1527: 764 active elements
10:52:53 DEBUG opendrift.models.basemodel:1538: 59.138036400031694 <- latitude -> 59.17461974279312
10:52:53 DEBUG opendrift.models.basemodel:1543: 10.951989946891214 <- longitude -> 11.014095961172542
10:52:53 DEBUG opendrift.models.basemodel:1548: -11.683732986450195 <- z -> 0.0
10:52:53 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:53 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:52:53 DEBUG opendrift.models.physics_methods:940: min: 3.223291, mean: 7.466401, max: 12.259461
10:52:53 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 3.223291, mean: 7.466401, max: 12.259461
10:52:53 DEBUG opendrift.models.basemodel:813: 53 elements hit coastline, moving back to water
10:52:53 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:53 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:52:53 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:52:53 DEBUG opendrift.models.physics_methods:741: Advecting 35 of 764 elements above 0.100m with wind-sheared ocean current (0.031459 m/s - 0.260749 m/s)
10:52:53 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:52:53 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:52:53 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.1859750230532455
10:52:53 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:52:53 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:52:53 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:52:53 DEBUG opendrift.models.oceandrift:572: 116 elements penetrated seafloor, lifting up
10:52:53 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:52:53 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:52:53 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:52:53 DEBUG opendrift.models.oceandrift:572: 108 elements penetrated seafloor, lifting up
10:52:53 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:52:53 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:52:53 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:52:53 DEBUG opendrift.models.oceandrift:572: 98 elements penetrated seafloor, lifting up
10:52:53 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:53 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:53 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:53 DEBUG opendrift.models.oceandrift:572: 105 elements penetrated seafloor, lifting up
10:52:53 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:53 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:53 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:53 DEBUG opendrift.models.oceandrift:572: 104 elements penetrated seafloor, lifting up
10:52:53 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:52:53 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:52:53 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:52:53 DEBUG opendrift.models.oceandrift:572: 108 elements penetrated seafloor, lifting up
10:52:53 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:53 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:53 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:53 DEBUG opendrift.models.oceandrift:572: 87 elements penetrated seafloor, lifting up
10:52:53 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:53 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:53 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:53 DEBUG opendrift.models.oceandrift:572: 90 elements penetrated seafloor, lifting up
10:52:53 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:52:53 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:52:53 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:52:53 DEBUG opendrift.models.oceandrift:572: 95 elements penetrated seafloor, lifting up
10:52:53 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:52:53 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:52:53 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:52:53 DEBUG opendrift.models.oceandrift:572: 85 elements penetrated seafloor, lifting up
10:52:53 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:52:53 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:52:53 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:52:53 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:52:53 DEBUG opendrift.models.basemodel:2945: 764 active elements (0 deactivated)
10:52:53 DEBUG opendrift.models.basemodel:1658: to be seeded: 9236, already seeded 764
10:52:53 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:52:53 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:53 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:52:53 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:53 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:53 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:53 DEBUG opendrift.models.basemodel:1253: Data needed for 799 elements
10:52:53 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:53 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 14:00:00 (before)
2023-08-21 15:00:00 (after)
10:52:53 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 14:00:00) in space (linearNDFast)
10:52:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:53 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:52:53 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:53 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:53 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:53 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:53 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.53136 (min) 12.7977 (max)
10:52:53 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:53 DEBUG opendrift.models.basemodel:1527: 799 active elements
10:52:53 DEBUG opendrift.models.basemodel:1538: 59.1356048275866 <- latitude -> 59.17394169684509
10:52:53 DEBUG opendrift.models.basemodel:1543: 10.950427652249664 <- longitude -> 11.016305520555115
10:52:53 DEBUG opendrift.models.basemodel:1548: -10.90829849243164 <- z -> 0.0
10:52:53 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:53 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:52:53 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:52:53 INFO opendrift.models.basemodel:2882: 2023-08-21 14:32:19.552469 - step 23 of 216 - 799 active elements (0 deactivated)
10:52:53 DEBUG opendrift.models.basemodel:2888: 9201 elements scheduled.
10:52:53 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:52:53 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:53 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:52:53 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:53 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:52:53 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:53 DEBUG opendrift.models.basemodel:1253: Data needed for 799 elements
10:52:53 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:52:53 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:52:53 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:52:53 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:52:53 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:53 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:53 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:52:53 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:53 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:53 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:53 DEBUG opendrift.models.basemodel:1253: Data needed for 799 elements
10:52:53 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:53 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 14:00:00 (before)
2023-08-21 15:00:00 (after)
10:52:54 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:52:54 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:52:54 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:52:54 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:52:54 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:52:54 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:52:54 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 20x18x5) for time after (2023-08-21 15:00:00)
10:52:54 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 14:00:00) in space (linearNDFast)
10:52:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:54 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 15:00:00) in space (linearNDFast)
10:52:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 1
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 1
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 99 elements, expanding data 1
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 99 elements, expanding data 1
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 99 elements, expanding data 1
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 99 elements, expanding data 1
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 99 elements, expanding data 1
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 428 elements, expanding data 1
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 428 elements, expanding data 1
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 428 elements, expanding data 1
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 428 elements, expanding data 1
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 428 elements, expanding data 1
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 1
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 1
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 1
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 1
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 1
10:52:54 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 14:00:00, weight 0.46) and
after (2023-08-21 15:00:00, weight 0.54) in time
10:52:54 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.04958290514659 and -58.983705026186 degrees.
10:52:54 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.04958290514659 and -58.983705026186 degrees.
10:52:54 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:54 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:54 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:54 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:52:54 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:52:54 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:54 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.70798 (min) 1.00804 (max)
10:52:54 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.856357 (min) 0.792664 (max)
10:52:54 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000402276 (min) 0.000229913 (max)
10:52:54 DEBUG opendrift.models.basemodel:1524: x_wind: 0.721579 (min) 13.2716 (max)
10:52:54 DEBUG opendrift.models.basemodel:1524: y_wind: -1.84107 (min) 10.6219 (max)
10:52:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:52:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:52:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:52:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:52:54 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:52:54 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:52:54 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:52:54 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.53136 (min) 12.7977 (max)
10:52:54 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:54 DEBUG opendrift.models.basemodel:1527: 799 active elements
10:52:54 DEBUG opendrift.models.basemodel:1538: 59.1356048275866 <- latitude -> 59.17394169684509
10:52:54 DEBUG opendrift.models.basemodel:1543: 10.950427652249664 <- longitude -> 11.016305520555115
10:52:54 DEBUG opendrift.models.basemodel:1548: -10.90829849243164 <- z -> 0.0
10:52:54 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:54 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:52:54 DEBUG opendrift.models.physics_methods:940: min: 2.386287, mean: 7.467577, max: 13.186628
10:52:54 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 2.386287, mean: 7.467577, max: 13.186628
10:52:54 DEBUG opendrift.models.basemodel:813: 56 elements hit coastline, moving back to water
10:52:54 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:52:54 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:52:54 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:52:54 DEBUG opendrift.models.physics_methods:741: Advecting 43 of 799 elements above 0.100m with wind-sheared ocean current (0.001751 m/s - 0.241564 m/s)
10:52:54 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:52:54 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:52:54 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.21516818167980192
10:52:54 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:52:54 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:52:54 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:52:54 DEBUG opendrift.models.oceandrift:572: 104 elements penetrated seafloor, lifting up
10:52:54 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:52:54 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:52:54 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:52:54 DEBUG opendrift.models.oceandrift:572: 108 elements penetrated seafloor, lifting up
10:52:54 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:52:54 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:52:54 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:52:54 DEBUG opendrift.models.oceandrift:572: 85 elements penetrated seafloor, lifting up
10:52:54 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:54 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:54 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:54 DEBUG opendrift.models.oceandrift:572: 100 elements penetrated seafloor, lifting up
10:52:54 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:52:54 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:52:54 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:52:54 DEBUG opendrift.models.oceandrift:572: 110 elements penetrated seafloor, lifting up
10:52:54 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:54 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:54 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:54 DEBUG opendrift.models.oceandrift:572: 99 elements penetrated seafloor, lifting up
10:52:54 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:52:54 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:52:54 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:52:54 DEBUG opendrift.models.oceandrift:572: 107 elements penetrated seafloor, lifting up
10:52:54 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:52:54 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:52:54 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:52:54 DEBUG opendrift.models.oceandrift:572: 108 elements penetrated seafloor, lifting up
10:52:54 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:52:54 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:52:54 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:52:54 DEBUG opendrift.models.oceandrift:572: 101 elements penetrated seafloor, lifting up
10:52:54 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:52:54 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:52:54 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:52:54 DEBUG opendrift.models.oceandrift:572: 100 elements penetrated seafloor, lifting up
10:52:54 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:52:54 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:54 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:52:54 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:52:54 DEBUG opendrift.models.basemodel:2945: 799 active elements (0 deactivated)
10:52:54 DEBUG opendrift.models.basemodel:1658: to be seeded: 9201, already seeded 799
10:52:54 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:52:54 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:54 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:52:54 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:54 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:54 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:54 DEBUG opendrift.models.basemodel:1253: Data needed for 834 elements
10:52:54 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:54 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 14:00:00 (before)
2023-08-21 15:00:00 (after)
10:52:54 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 14:00:00) in space (linearNDFast)
10:52:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:54 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:52:54 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:54 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:54 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:54 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:54 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.3024 (min) 13.0337 (max)
10:52:54 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:54 DEBUG opendrift.models.basemodel:1527: 834 active elements
10:52:54 DEBUG opendrift.models.basemodel:1538: 59.13402676643087 <- latitude -> 59.172904502448105
10:52:54 DEBUG opendrift.models.basemodel:1543: 10.948718669967516 <- longitude -> 11.01900385272201
10:52:54 DEBUG opendrift.models.basemodel:1548: -11.775602978426171 <- z -> 0.0
10:52:54 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:54 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
10:52:54 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:52:54 INFO opendrift.models.basemodel:2882: 2023-08-21 14:42:19.552469 - step 24 of 216 - 834 active elements (0 deactivated)
10:52:54 DEBUG opendrift.models.basemodel:2888: 9166 elements scheduled.
10:52:54 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:52:54 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:54 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:52:54 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:54 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:52:54 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:54 DEBUG opendrift.models.basemodel:1253: Data needed for 834 elements
10:52:54 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:52:54 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:52:54 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:52:54 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:52:54 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:54 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:54 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:52:54 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:54 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:54 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:54 DEBUG opendrift.models.basemodel:1253: Data needed for 834 elements
10:52:54 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:54 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 14:00:00 (before)
2023-08-21 15:00:00 (after)
10:52:54 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:52:54 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:52:54 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:52:54 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:52:54 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:52:54 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:52:54 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 20x18x5) for time after (2023-08-21 15:00:00)
10:52:54 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 14:00:00) in space (linearNDFast)
10:52:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:54 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 15:00:00) in space (linearNDFast)
10:52:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 1
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 1
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 1
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 1
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 1
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 1
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 1
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 452 elements, expanding data 1
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 452 elements, expanding data 1
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 452 elements, expanding data 1
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 452 elements, expanding data 1
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 452 elements, expanding data 1
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 21 elements, expanding data 2
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 1
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 1
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 1
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 1
10:52:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 1
10:52:54 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 14:00:00, weight 0.29) and
after (2023-08-21 15:00:00, weight 0.71) in time
10:52:54 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05129188861271 and -58.981006697893825 degrees.
10:52:54 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05129188861271 and -58.981006697893825 degrees.
10:52:54 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:54 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:54 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:54 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:52:54 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:52:54 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:54 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.659679 (min) 1.18949 (max)
10:52:54 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.977589 (min) 0.874307 (max)
10:52:54 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000436323 (min) 0.000245752 (max)
10:52:54 DEBUG opendrift.models.basemodel:1524: x_wind: 0.827716 (min) 14.2527 (max)
10:52:54 DEBUG opendrift.models.basemodel:1524: y_wind: -0.642331 (min) 10.4072 (max)
10:52:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:52:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:52:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:52:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:52:54 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:52:54 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:52:54 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:52:54 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.3024 (min) 13.0337 (max)
10:52:54 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:54 DEBUG opendrift.models.basemodel:1527: 834 active elements
10:52:54 DEBUG opendrift.models.basemodel:1538: 59.13402676643087 <- latitude -> 59.172904502448105
10:52:54 DEBUG opendrift.models.basemodel:1543: 10.948718669967516 <- longitude -> 11.01900385272201
10:52:54 DEBUG opendrift.models.basemodel:1548: -11.775602978426171 <- z -> 0.0
10:52:54 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:54 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:52:54 DEBUG opendrift.models.physics_methods:940: min: 0.710940, mean: 7.549251, max: 13.426756
10:52:54 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.710940, mean: 7.549251, max: 13.426756
10:52:54 DEBUG opendrift.models.basemodel:813: 53 elements hit coastline, moving back to water
10:52:54 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:52:54 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:52:54 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:52:54 DEBUG opendrift.models.physics_methods:741: Advecting 39 of 834 elements above 0.100m with wind-sheared ocean current (0.000235 m/s - 0.266853 m/s)
10:52:54 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:52:54 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:52:54 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.2230758288670349
10:52:54 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:52:54 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:52:54 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:52:54 DEBUG opendrift.models.oceandrift:572: 117 elements penetrated seafloor, lifting up
10:52:54 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:52:54 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:52:54 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:52:54 DEBUG opendrift.models.oceandrift:572: 124 elements penetrated seafloor, lifting up
10:52:54 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:52:54 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:52:54 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:52:54 DEBUG opendrift.models.oceandrift:572: 119 elements penetrated seafloor, lifting up
10:52:54 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:52:54 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:54 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:52:54 DEBUG opendrift.models.oceandrift:572: 115 elements penetrated seafloor, lifting up
10:52:54 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:52:54 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:52:54 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:52:54 DEBUG opendrift.models.oceandrift:572: 98 elements penetrated seafloor, lifting up
10:52:55 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:52:55 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:55 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:52:55 DEBUG opendrift.models.oceandrift:572: 106 elements penetrated seafloor, lifting up
10:52:55 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:52:55 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:52:55 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:52:55 DEBUG opendrift.models.oceandrift:572: 91 elements penetrated seafloor, lifting up
10:52:55 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:52:55 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:52:55 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:52:55 DEBUG opendrift.models.oceandrift:572: 93 elements penetrated seafloor, lifting up
10:52:55 DEBUG opendrift.models.oceandrift:590: 11 elements reached seafloor, set to bottom
10:52:55 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:52:55 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
10:52:55 DEBUG opendrift.models.oceandrift:572: 98 elements penetrated seafloor, lifting up
10:52:55 DEBUG opendrift.models.oceandrift:590: 1 elements reached seafloor, set to bottom
10:52:55 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:55 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
10:52:55 DEBUG opendrift.models.oceandrift:572: 110 elements penetrated seafloor, lifting up
10:52:55 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:52:55 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:52:55 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:52:55 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:52:55 DEBUG opendrift.models.basemodel:2945: 834 active elements (0 deactivated)
10:52:55 DEBUG opendrift.models.basemodel:1658: to be seeded: 9166, already seeded 834
10:52:55 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:52:55 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:55 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:52:55 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:55 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:55 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:55 DEBUG opendrift.models.basemodel:1253: Data needed for 868 elements
10:52:55 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:55 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 14:00:00 (before)
2023-08-21 15:00:00 (after)
10:52:55 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 14:00:00) in space (linearNDFast)
10:52:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:55 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:52:55 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:55 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:55 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:55 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:55 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.07648 (min) 13.0183 (max)
10:52:55 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:55 DEBUG opendrift.models.basemodel:1527: 868 active elements
10:52:55 DEBUG opendrift.models.basemodel:1538: 59.1350059380614 <- latitude -> 59.173754914693184
10:52:55 DEBUG opendrift.models.basemodel:1543: 10.946719132190086 <- longitude -> 11.02295259808428
10:52:55 DEBUG opendrift.models.basemodel:1548: -11.781792869567871 <- z -> 0.0
10:52:55 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:55 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
10:52:55 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:52:55 INFO opendrift.models.basemodel:2882: 2023-08-21 14:52:19.552469 - step 25 of 216 - 868 active elements (0 deactivated)
10:52:55 DEBUG opendrift.models.basemodel:2888: 9132 elements scheduled.
10:52:55 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:52:55 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:55 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:52:55 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:55 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:52:55 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:55 DEBUG opendrift.models.basemodel:1253: Data needed for 868 elements
10:52:55 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:52:55 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:52:55 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:52:55 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:52:55 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:55 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:55 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:52:55 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:55 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:55 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:55 DEBUG opendrift.models.basemodel:1253: Data needed for 868 elements
10:52:55 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:55 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 14:00:00 (before)
2023-08-21 15:00:00 (after)
10:52:55 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:52:55 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:52:55 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:52:55 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:52:55 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:52:55 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:52:55 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 20x18x5) for time after (2023-08-21 15:00:00)
10:52:55 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 14:00:00) in space (linearNDFast)
10:52:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:55 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 15:00:00) in space (linearNDFast)
10:52:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1
10:52:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1
10:52:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 1
10:52:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
10:52:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 1
10:52:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
10:52:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 1
10:52:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
10:52:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 1
10:52:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
10:52:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 124 elements, expanding data 1
10:52:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
10:52:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 463 elements, expanding data 1
10:52:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
10:52:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 463 elements, expanding data 1
10:52:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
10:52:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 463 elements, expanding data 1
10:52:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
10:52:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 463 elements, expanding data 1
10:52:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
10:52:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 463 elements, expanding data 1
10:52:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 24 elements, expanding data 2
10:52:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1
10:52:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1
10:52:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1
10:52:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1
10:52:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 113 elements, expanding data 1
10:52:55 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 14:00:00, weight 0.13) and
after (2023-08-21 15:00:00, weight 0.87) in time
10:52:55 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05329142088755 and -58.97705794481417 degrees.
10:52:55 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05329142088755 and -58.97705794481417 degrees.
10:52:55 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:55 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:55 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:55 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:52:55 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:52:55 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:55 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.725453 (min) 1.06568 (max)
10:52:55 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.905903 (min) 0.605124 (max)
10:52:55 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000424252 (min) 0.000285185 (max)
10:52:55 DEBUG opendrift.models.basemodel:1524: x_wind: 0.307757 (min) 12.7829 (max)
10:52:55 DEBUG opendrift.models.basemodel:1524: y_wind: -0.738797 (min) 11.2397 (max)
10:52:55 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:52:55 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:52:55 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:52:55 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:52:55 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:52:55 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:52:55 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:52:55 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.07648 (min) 13.0183 (max)
10:52:55 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:55 DEBUG opendrift.models.basemodel:1527: 868 active elements
10:52:55 DEBUG opendrift.models.basemodel:1538: 59.1350059380614 <- latitude -> 59.173754914693184
10:52:55 DEBUG opendrift.models.basemodel:1543: 10.946719132190086 <- longitude -> 11.02295259808428
10:52:55 DEBUG opendrift.models.basemodel:1548: -11.484740257263184 <- z -> 0.0
10:52:55 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:55 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:52:55 DEBUG opendrift.models.physics_methods:940: min: 2.631488, mean: 7.526311, max: 12.779512
10:52:55 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 2.631488, mean: 7.526311, max: 12.779512
10:52:55 DEBUG opendrift.models.basemodel:813: 49 elements hit coastline, moving back to water
10:52:55 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:52:55 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:52:55 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:52:55 DEBUG opendrift.models.physics_methods:741: Advecting 39 of 868 elements above 0.100m with wind-sheared ocean current (0.004767 m/s - 0.221217 m/s)
10:52:55 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:52:55 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:52:55 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.20208758093650814
10:52:55 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:52:55 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:52:55 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:52:55 DEBUG opendrift.models.oceandrift:572: 130 elements penetrated seafloor, lifting up
10:52:55 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:52:55 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:52:55 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:52:55 DEBUG opendrift.models.oceandrift:572: 125 elements penetrated seafloor, lifting up
10:52:55 DEBUG opendrift.models.oceandrift:590: 11 elements reached seafloor, set to bottom
10:52:55 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:52:55 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
10:52:55 DEBUG opendrift.models.oceandrift:572: 104 elements penetrated seafloor, lifting up
10:52:55 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:52:55 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:52:55 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:52:55 DEBUG opendrift.models.oceandrift:572: 107 elements penetrated seafloor, lifting up
10:52:55 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:52:55 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:52:55 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:52:55 DEBUG opendrift.models.oceandrift:572: 104 elements penetrated seafloor, lifting up
10:52:55 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:52:55 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:55 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:52:55 DEBUG opendrift.models.oceandrift:572: 106 elements penetrated seafloor, lifting up
10:52:55 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:52:55 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:55 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:52:55 DEBUG opendrift.models.oceandrift:572: 97 elements penetrated seafloor, lifting up
10:52:55 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:52:55 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:52:55 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:52:55 DEBUG opendrift.models.oceandrift:572: 104 elements penetrated seafloor, lifting up
10:52:55 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:52:55 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:55 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:52:55 DEBUG opendrift.models.oceandrift:572: 99 elements penetrated seafloor, lifting up
10:52:55 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:52:55 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:52:55 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:52:55 DEBUG opendrift.models.oceandrift:572: 107 elements penetrated seafloor, lifting up
10:52:55 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:52:55 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:52:55 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:52:55 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:52:55 DEBUG opendrift.models.basemodel:2945: 868 active elements (0 deactivated)
10:52:55 DEBUG opendrift.models.basemodel:1658: to be seeded: 9132, already seeded 868
10:52:55 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:52:55 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:55 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:52:55 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:55 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:55 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:55 DEBUG opendrift.models.basemodel:1253: Data needed for 903 elements
10:52:55 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:55 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 15:00:00 (before)
2023-08-21 16:00:00 (after)
10:52:55 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 15:00:00) in space (linearNDFast)
10:52:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:55 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:52:55 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:55 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:55 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:55 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:55 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.64134 (min) 12.7261 (max)
10:52:55 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:55 DEBUG opendrift.models.basemodel:1527: 903 active elements
10:52:55 DEBUG opendrift.models.basemodel:1538: 59.13507279652309 <- latitude -> 59.173387131054994
10:52:55 DEBUG opendrift.models.basemodel:1543: 10.946148740014939 <- longitude -> 11.016365112600235
10:52:55 DEBUG opendrift.models.basemodel:1548: -11.75893003753444 <- z -> 0.0
10:52:55 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:55 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
10:52:55 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:52:55 INFO opendrift.models.basemodel:2882: 2023-08-21 15:02:19.552469 - step 26 of 216 - 903 active elements (0 deactivated)
10:52:55 DEBUG opendrift.models.basemodel:2888: 9097 elements scheduled.
10:52:55 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:52:55 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:55 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:52:55 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:55 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:52:55 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:55 DEBUG opendrift.models.basemodel:1253: Data needed for 903 elements
10:52:55 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:52:55 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:52:55 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:52:55 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:52:55 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:55 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:55 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:52:55 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:55 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:55 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:55 DEBUG opendrift.models.basemodel:1253: Data needed for 903 elements
10:52:55 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:55 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 15:00:00 (before)
2023-08-21 16:00:00 (after)
10:52:56 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:52:56 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:52:56 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:52:56 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:52:56 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:52:56 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:52:56 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 20x18x5) for time after (2023-08-21 16:00:00)
10:52:56 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 15:00:00) in space (linearNDFast)
10:52:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:56 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 16:00:00) in space (linearNDFast)
10:52:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 131 elements, expanding data 1
10:52:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 131 elements, expanding data 1
10:52:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 148 elements, expanding data 1
10:52:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
10:52:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 148 elements, expanding data 1
10:52:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
10:52:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 148 elements, expanding data 1
10:52:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
10:52:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 148 elements, expanding data 1
10:52:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
10:52:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 148 elements, expanding data 1
10:52:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
10:52:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 492 elements, expanding data 1
10:52:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 2
10:52:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 492 elements, expanding data 1
10:52:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 2
10:52:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 492 elements, expanding data 1
10:52:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 2
10:52:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 492 elements, expanding data 1
10:52:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 2
10:52:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 492 elements, expanding data 1
10:52:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 2
10:52:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 131 elements, expanding data 1
10:52:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 131 elements, expanding data 1
10:52:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 131 elements, expanding data 1
10:52:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 131 elements, expanding data 1
10:52:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 131 elements, expanding data 1
10:52:56 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 15:00:00, weight 0.96) and
after (2023-08-21 16:00:00, weight 0.04) in time
10:52:56 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05386181904362 and -58.98364543845424 degrees.
10:52:56 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05386181904362 and -58.98364543845424 degrees.
10:52:56 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:56 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:56 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:56 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:52:56 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:52:56 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:56 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.669177 (min) 0.920416 (max)
10:52:56 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.965366 (min) 0.57999 (max)
10:52:56 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000485227 (min) 0.000245672 (max)
10:52:56 DEBUG opendrift.models.basemodel:1524: x_wind: 1.36481 (min) 13.5549 (max)
10:52:56 DEBUG opendrift.models.basemodel:1524: y_wind: -1.2668 (min) 11.7269 (max)
10:52:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:52:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:52:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:52:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:52:56 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:52:56 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:52:56 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:52:56 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.64133 (min) 12.7261 (max)
10:52:56 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:56 DEBUG opendrift.models.basemodel:1527: 903 active elements
10:52:56 DEBUG opendrift.models.basemodel:1538: 59.13507279652309 <- latitude -> 59.173387131054994
10:52:56 DEBUG opendrift.models.basemodel:1543: 10.946148740014939 <- longitude -> 11.016365112600235
10:52:56 DEBUG opendrift.models.basemodel:1548: -11.75893003753444 <- z -> 0.0
10:52:56 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:56 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:52:56 DEBUG opendrift.models.physics_methods:940: min: 2.184676, mean: 7.577963, max: 13.162471
10:52:56 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 2.184676, mean: 7.577963, max: 13.162471
10:52:56 DEBUG opendrift.models.basemodel:813: 51 elements hit coastline, moving back to water
10:52:56 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:52:56 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:52:56 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:52:56 DEBUG opendrift.models.physics_methods:741: Advecting 40 of 903 elements above 0.100m with wind-sheared ocean current (0.020320 m/s - 0.286033 m/s)
10:52:56 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:52:56 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:52:56 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.21438057550724027
10:52:56 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:52:56 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:52:56 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:52:56 DEBUG opendrift.models.oceandrift:572: 125 elements penetrated seafloor, lifting up
10:52:56 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:52:56 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:52:56 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:52:56 DEBUG opendrift.models.oceandrift:572: 122 elements penetrated seafloor, lifting up
10:52:56 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:52:56 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:52:56 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:52:56 DEBUG opendrift.models.oceandrift:572: 116 elements penetrated seafloor, lifting up
10:52:56 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:52:56 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:52:56 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:52:56 DEBUG opendrift.models.oceandrift:572: 127 elements penetrated seafloor, lifting up
10:52:56 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:52:56 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:52:56 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:52:56 DEBUG opendrift.models.oceandrift:572: 115 elements penetrated seafloor, lifting up
10:52:56 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:52:56 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:52:56 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:52:56 DEBUG opendrift.models.oceandrift:572: 124 elements penetrated seafloor, lifting up
10:52:56 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:52:56 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:52:56 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:52:56 DEBUG opendrift.models.oceandrift:572: 117 elements penetrated seafloor, lifting up
10:52:56 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:52:56 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:52:56 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:52:56 DEBUG opendrift.models.oceandrift:572: 108 elements penetrated seafloor, lifting up
10:52:56 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:56 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:56 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:56 DEBUG opendrift.models.oceandrift:572: 98 elements penetrated seafloor, lifting up
10:52:56 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:56 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:56 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:56 DEBUG opendrift.models.oceandrift:572: 96 elements penetrated seafloor, lifting up
10:52:56 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:52:56 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:56 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:52:56 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:52:56 DEBUG opendrift.models.basemodel:2945: 903 active elements (0 deactivated)
10:52:56 DEBUG opendrift.models.basemodel:1658: to be seeded: 9097, already seeded 903
10:52:56 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:52:56 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:56 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:52:56 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:56 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:56 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:56 DEBUG opendrift.models.basemodel:1253: Data needed for 938 elements
10:52:56 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:56 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 15:00:00 (before)
2023-08-21 16:00:00 (after)
10:52:56 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 15:00:00) in space (linearNDFast)
10:52:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:56 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:52:56 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:56 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:56 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:56 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:56 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.30629 (min) 12.7344 (max)
10:52:56 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:56 DEBUG opendrift.models.basemodel:1527: 938 active elements
10:52:56 DEBUG opendrift.models.basemodel:1538: 59.13610403850652 <- latitude -> 59.1745379190053
10:52:56 DEBUG opendrift.models.basemodel:1543: 10.947638328013342 <- longitude -> 11.018454483066481
10:52:56 DEBUG opendrift.models.basemodel:1548: -11.948485511685137 <- z -> 0.0
10:52:56 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:56 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
10:52:56 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:52:56 INFO opendrift.models.basemodel:2882: 2023-08-21 15:12:19.552469 - step 27 of 216 - 938 active elements (0 deactivated)
10:52:56 DEBUG opendrift.models.basemodel:2888: 9062 elements scheduled.
10:52:56 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:52:56 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:56 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:52:56 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:56 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:52:56 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:56 DEBUG opendrift.models.basemodel:1253: Data needed for 938 elements
10:52:56 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:52:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:52:56 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:52:56 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:52:56 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:56 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:56 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:52:56 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:56 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:56 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:56 DEBUG opendrift.models.basemodel:1253: Data needed for 938 elements
10:52:56 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:56 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 15:00:00 (before)
2023-08-21 16:00:00 (after)
10:52:57 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:52:57 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:52:57 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:52:57 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:52:57 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:52:57 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:52:57 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 20x18x5) for time after (2023-08-21 16:00:00)
10:52:57 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 15:00:00) in space (linearNDFast)
10:52:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:57 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 16:00:00) in space (linearNDFast)
10:52:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 134 elements, expanding data 1
10:52:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 134 elements, expanding data 1
10:52:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 1
10:52:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
10:52:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 1
10:52:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
10:52:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 1
10:52:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
10:52:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 1
10:52:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
10:52:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 1
10:52:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
10:52:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 527 elements, expanding data 1
10:52:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
10:52:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 527 elements, expanding data 1
10:52:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
10:52:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 527 elements, expanding data 1
10:52:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
10:52:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 527 elements, expanding data 1
10:52:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
10:52:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 527 elements, expanding data 1
10:52:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
10:52:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 134 elements, expanding data 1
10:52:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 134 elements, expanding data 1
10:52:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 134 elements, expanding data 1
10:52:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 134 elements, expanding data 1
10:52:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 134 elements, expanding data 1
10:52:57 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 15:00:00, weight 0.79) and
after (2023-08-21 16:00:00, weight 0.21) in time
10:52:57 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05237222724462 and -58.98155605704125 degrees.
10:52:57 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05237222724462 and -58.98155605704125 degrees.
10:52:57 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:57 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:57 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:57 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:52:57 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:52:57 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:57 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.647425 (min) 1.17705 (max)
10:52:57 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.02184 (min) 0.508633 (max)
10:52:57 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.00045615 (min) 0.000311234 (max)
10:52:57 DEBUG opendrift.models.basemodel:1524: x_wind: -0.758098 (min) 13.0743 (max)
10:52:57 DEBUG opendrift.models.basemodel:1524: y_wind: -2.10633 (min) 10.9877 (max)
10:52:57 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:52:57 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:52:57 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:52:57 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:52:57 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:52:57 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:52:57 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:52:57 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.30629 (min) 12.7344 (max)
10:52:57 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:57 DEBUG opendrift.models.basemodel:1527: 938 active elements
10:52:57 DEBUG opendrift.models.basemodel:1538: 59.13610403850652 <- latitude -> 59.1745379190053
10:52:57 DEBUG opendrift.models.basemodel:1543: 10.947638328013342 <- longitude -> 11.018454483066481
10:52:57 DEBUG opendrift.models.basemodel:1548: -11.948485511685137 <- z -> 0.0
10:52:57 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:57 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:52:57 DEBUG opendrift.models.physics_methods:940: min: 2.892403, mean: 7.674599, max: 12.598160
10:52:57 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 2.892403, mean: 7.674599, max: 12.598160
10:52:57 DEBUG opendrift.models.basemodel:813: 59 elements hit coastline, moving back to water
10:52:57 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:52:57 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:52:57 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:52:57 DEBUG opendrift.models.physics_methods:741: Advecting 39 of 938 elements above 0.100m with wind-sheared ocean current (0.029116 m/s - 0.255047 m/s)
10:52:57 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:52:57 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:52:57 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.1963928051873016
10:52:57 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:52:57 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:52:57 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:52:57 DEBUG opendrift.models.oceandrift:572: 134 elements penetrated seafloor, lifting up
10:52:57 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:52:57 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:52:57 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:52:57 DEBUG opendrift.models.oceandrift:572: 132 elements penetrated seafloor, lifting up
10:52:57 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:52:57 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:52:57 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:52:57 DEBUG opendrift.models.oceandrift:572: 137 elements penetrated seafloor, lifting up
10:52:57 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:52:57 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:52:57 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:52:57 DEBUG opendrift.models.oceandrift:572: 118 elements penetrated seafloor, lifting up
10:52:57 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:52:57 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:57 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:52:57 DEBUG opendrift.models.oceandrift:572: 127 elements penetrated seafloor, lifting up
10:52:57 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:57 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:57 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:57 DEBUG opendrift.models.oceandrift:572: 110 elements penetrated seafloor, lifting up
10:52:57 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:52:57 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:52:57 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:52:57 DEBUG opendrift.models.oceandrift:572: 118 elements penetrated seafloor, lifting up
10:52:57 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:52:57 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:57 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:52:57 DEBUG opendrift.models.oceandrift:572: 124 elements penetrated seafloor, lifting up
10:52:57 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:52:57 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:52:57 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:52:57 DEBUG opendrift.models.oceandrift:572: 108 elements penetrated seafloor, lifting up
10:52:57 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:52:57 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:52:57 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:52:57 DEBUG opendrift.models.oceandrift:572: 118 elements penetrated seafloor, lifting up
10:52:57 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:52:57 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:52:57 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:52:57 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:52:57 DEBUG opendrift.models.basemodel:2945: 938 active elements (0 deactivated)
10:52:57 DEBUG opendrift.models.basemodel:1658: to be seeded: 9062, already seeded 938
10:52:57 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:52:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:57 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:52:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:57 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:57 DEBUG opendrift.models.basemodel:1253: Data needed for 973 elements
10:52:57 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:57 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 15:00:00 (before)
2023-08-21 16:00:00 (after)
10:52:57 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 15:00:00) in space (linearNDFast)
10:52:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:57 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:52:57 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:57 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:57 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:57 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:57 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.30509 (min) 12.9587 (max)
10:52:57 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:57 DEBUG opendrift.models.basemodel:1527: 973 active elements
10:52:57 DEBUG opendrift.models.basemodel:1538: 59.13554835949748 <- latitude -> 59.176760648384004
10:52:57 DEBUG opendrift.models.basemodel:1543: 10.947397834915737 <- longitude -> 11.022225992434953
10:52:57 DEBUG opendrift.models.basemodel:1548: -12.323395004272461 <- z -> 0.0
10:52:57 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:57 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
10:52:57 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:52:57 INFO opendrift.models.basemodel:2882: 2023-08-21 15:22:19.552469 - step 28 of 216 - 973 active elements (0 deactivated)
10:52:57 DEBUG opendrift.models.basemodel:2888: 9027 elements scheduled.
10:52:57 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:52:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:57 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:52:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:57 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:52:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:57 DEBUG opendrift.models.basemodel:1253: Data needed for 973 elements
10:52:57 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:52:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:52:57 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:52:57 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:52:57 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:57 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:52:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:57 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:57 DEBUG opendrift.models.basemodel:1253: Data needed for 973 elements
10:52:57 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:57 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 15:00:00 (before)
2023-08-21 16:00:00 (after)
10:52:58 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:52:58 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:52:58 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:52:58 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:52:58 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:52:58 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:52:58 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 20x18x5) for time after (2023-08-21 16:00:00)
10:52:58 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 15:00:00) in space (linearNDFast)
10:52:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:58 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 16:00:00) in space (linearNDFast)
10:52:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 149 elements, expanding data 1
10:52:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 149 elements, expanding data 1
10:52:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 172 elements, expanding data 1
10:52:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:52:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 172 elements, expanding data 1
10:52:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:52:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 172 elements, expanding data 1
10:52:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:52:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 172 elements, expanding data 1
10:52:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:52:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 172 elements, expanding data 1
10:52:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:52:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 558 elements, expanding data 1
10:52:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
10:52:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 558 elements, expanding data 1
10:52:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
10:52:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 558 elements, expanding data 1
10:52:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
10:52:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 558 elements, expanding data 1
10:52:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
10:52:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 558 elements, expanding data 1
10:52:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 2
10:52:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 149 elements, expanding data 1
10:52:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 149 elements, expanding data 1
10:52:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 149 elements, expanding data 1
10:52:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 149 elements, expanding data 1
10:52:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 149 elements, expanding data 1
10:52:58 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 15:00:00, weight 0.63) and
after (2023-08-21 16:00:00, weight 0.37) in time
10:52:58 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.052612719715 and -58.97778455201842 degrees.
10:52:58 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.052612719715 and -58.97778455201842 degrees.
10:52:58 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:58 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:58 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:58 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:52:58 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:52:58 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:58 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.774943 (min) 1.02436 (max)
10:52:58 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.969251 (min) 0.61155 (max)
10:52:58 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000408109 (min) 0.000246944 (max)
10:52:58 DEBUG opendrift.models.basemodel:1524: x_wind: 0.813477 (min) 13.1912 (max)
10:52:58 DEBUG opendrift.models.basemodel:1524: y_wind: -2.97427 (min) 11.5543 (max)
10:52:58 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:52:58 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:52:58 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:52:58 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:52:58 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:52:58 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:52:58 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:52:58 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.30509 (min) 12.9587 (max)
10:52:58 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:58 DEBUG opendrift.models.basemodel:1527: 973 active elements
10:52:58 DEBUG opendrift.models.basemodel:1538: 59.13554835949748 <- latitude -> 59.176760648384004
10:52:58 DEBUG opendrift.models.basemodel:1543: 10.947397834915737 <- longitude -> 11.022225992434953
10:52:58 DEBUG opendrift.models.basemodel:1548: -12.323395004272461 <- z -> 0.0
10:52:58 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:58 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:52:58 DEBUG opendrift.models.physics_methods:940: min: 1.398665, mean: 7.635488, max: 12.343490
10:52:58 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 1.398665, mean: 7.635488, max: 12.343490
10:52:58 DEBUG opendrift.models.basemodel:813: 62 elements hit coastline, moving back to water
10:52:58 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:58 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:52:58 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:52:58 DEBUG opendrift.models.physics_methods:741: Advecting 43 of 973 elements above 0.100m with wind-sheared ocean current (0.003711 m/s - 0.280667 m/s)
10:52:58 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:52:58 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:52:58 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.1885331453028488
10:52:58 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:52:58 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:52:58 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:52:58 DEBUG opendrift.models.oceandrift:572: 144 elements penetrated seafloor, lifting up
10:52:58 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:52:58 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:52:58 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:52:58 DEBUG opendrift.models.oceandrift:572: 136 elements penetrated seafloor, lifting up
10:52:58 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:52:58 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:52:58 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:52:58 DEBUG opendrift.models.oceandrift:572: 128 elements penetrated seafloor, lifting up
10:52:58 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:52:58 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:52:58 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:52:58 DEBUG opendrift.models.oceandrift:572: 132 elements penetrated seafloor, lifting up
10:52:58 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:58 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:58 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:58 DEBUG opendrift.models.oceandrift:572: 111 elements penetrated seafloor, lifting up
10:52:58 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:58 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:58 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:58 DEBUG opendrift.models.oceandrift:572: 128 elements penetrated seafloor, lifting up
10:52:58 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:52:58 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:52:58 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:52:58 DEBUG opendrift.models.oceandrift:572: 128 elements penetrated seafloor, lifting up
10:52:58 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:52:58 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:52:58 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:52:58 DEBUG opendrift.models.oceandrift:572: 121 elements penetrated seafloor, lifting up
10:52:58 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:52:58 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:52:58 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:52:58 DEBUG opendrift.models.oceandrift:572: 124 elements penetrated seafloor, lifting up
10:52:58 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:52:58 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:58 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:52:58 DEBUG opendrift.models.oceandrift:572: 119 elements penetrated seafloor, lifting up
10:52:58 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:58 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:58 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:58 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:52:58 DEBUG opendrift.models.basemodel:2945: 973 active elements (0 deactivated)
10:52:58 DEBUG opendrift.models.basemodel:1658: to be seeded: 9027, already seeded 973
10:52:58 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:52:58 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:58 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:52:58 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:58 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:58 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:58 DEBUG opendrift.models.basemodel:1253: Data needed for 1007 elements
10:52:58 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:58 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 15:00:00 (before)
2023-08-21 16:00:00 (after)
10:52:58 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 15:00:00) in space (linearNDFast)
10:52:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:58 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:52:58 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:58 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:58 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:58 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:58 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.11892 (min) 12.7206 (max)
10:52:58 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:58 DEBUG opendrift.models.basemodel:1527: 1007 active elements
10:52:58 DEBUG opendrift.models.basemodel:1538: 59.13524477858209 <- latitude -> 59.175830211420305
10:52:58 DEBUG opendrift.models.basemodel:1543: 10.945717880250754 <- longitude -> 11.01718742987635
10:52:58 DEBUG opendrift.models.basemodel:1548: -12.68162654876709 <- z -> 0.0
10:52:58 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:58 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
10:52:58 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:52:58 INFO opendrift.models.basemodel:2882: 2023-08-21 15:32:19.552469 - step 29 of 216 - 1007 active elements (0 deactivated)
10:52:58 DEBUG opendrift.models.basemodel:2888: 8993 elements scheduled.
10:52:58 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:52:58 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:58 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:52:58 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:58 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:52:58 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:58 DEBUG opendrift.models.basemodel:1253: Data needed for 1007 elements
10:52:58 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:52:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:52:58 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:52:58 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:52:58 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:58 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:58 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:52:58 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:58 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:58 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:58 DEBUG opendrift.models.basemodel:1253: Data needed for 1007 elements
10:52:58 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:58 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 15:00:00 (before)
2023-08-21 16:00:00 (after)
10:52:59 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:52:59 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:52:59 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:52:59 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:52:59 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:52:59 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:52:59 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 20x19x5) for time after (2023-08-21 16:00:00)
10:52:59 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 15:00:00) in space (linearNDFast)
10:52:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:59 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 16:00:00) in space (linearNDFast)
10:52:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 151 elements, expanding data 1
10:52:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 151 elements, expanding data 1
10:52:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 180 elements, expanding data 1
10:52:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:52:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 180 elements, expanding data 1
10:52:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:52:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 180 elements, expanding data 1
10:52:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:52:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 180 elements, expanding data 1
10:52:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:52:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 180 elements, expanding data 1
10:52:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:52:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 560 elements, expanding data 1
10:52:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 2
10:52:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 560 elements, expanding data 1
10:52:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 2
10:52:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 560 elements, expanding data 1
10:52:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 2
10:52:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 560 elements, expanding data 1
10:52:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 2
10:52:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 560 elements, expanding data 1
10:52:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 2
10:52:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 151 elements, expanding data 1
10:52:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 151 elements, expanding data 1
10:52:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 151 elements, expanding data 1
10:52:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 151 elements, expanding data 1
10:52:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 151 elements, expanding data 1
10:52:59 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 15:00:00, weight 0.46) and
after (2023-08-21 16:00:00, weight 0.54) in time
10:52:59 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05429267869945 and -58.982823127763986 degrees.
10:52:59 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05429267869945 and -58.982823127763986 degrees.
10:52:59 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:59 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:59 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:59 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:52:59 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:52:59 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:59 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.642247 (min) 1.11807 (max)
10:52:59 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.921498 (min) 0.728806 (max)
10:52:59 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000385752 (min) 0.000268521 (max)
10:52:59 DEBUG opendrift.models.basemodel:1524: x_wind: 1.3925 (min) 12.9366 (max)
10:52:59 DEBUG opendrift.models.basemodel:1524: y_wind: -4.66054 (min) 11.1786 (max)
10:52:59 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:52:59 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:52:59 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:52:59 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:52:59 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:52:59 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:52:59 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:52:59 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.11892 (min) 12.7206 (max)
10:52:59 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:59 DEBUG opendrift.models.basemodel:1527: 1007 active elements
10:52:59 DEBUG opendrift.models.basemodel:1538: 59.13524477858209 <- latitude -> 59.175830211420305
10:52:59 DEBUG opendrift.models.basemodel:1543: 10.945717880250754 <- longitude -> 11.01718742987635
10:52:59 DEBUG opendrift.models.basemodel:1548: -12.617347717285156 <- z -> 0.0
10:52:59 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:59 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:52:59 DEBUG opendrift.models.physics_methods:940: min: 1.293727, mean: 7.615003, max: 12.761885
10:52:59 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 1.293727, mean: 7.615003, max: 12.761885
10:52:59 DEBUG opendrift.models.basemodel:813: 55 elements hit coastline, moving back to water
10:52:59 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:52:59 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:52:59 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:52:59 DEBUG opendrift.models.physics_methods:741: Advecting 37 of 1007 elements above 0.100m with wind-sheared ocean current (0.015429 m/s - 0.270014 m/s)
10:52:59 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:52:59 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:52:59 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.20153055393035885
10:52:59 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:52:59 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:52:59 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:52:59 DEBUG opendrift.models.oceandrift:572: 155 elements penetrated seafloor, lifting up
10:52:59 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:52:59 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:52:59 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:52:59 DEBUG opendrift.models.oceandrift:572: 141 elements penetrated seafloor, lifting up
10:52:59 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:52:59 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:59 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:52:59 DEBUG opendrift.models.oceandrift:572: 159 elements penetrated seafloor, lifting up
10:52:59 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:52:59 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:52:59 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:52:59 DEBUG opendrift.models.oceandrift:572: 139 elements penetrated seafloor, lifting up
10:52:59 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:52:59 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:59 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:52:59 DEBUG opendrift.models.oceandrift:572: 132 elements penetrated seafloor, lifting up
10:52:59 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:52:59 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:52:59 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:52:59 DEBUG opendrift.models.oceandrift:572: 120 elements penetrated seafloor, lifting up
10:52:59 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:52:59 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:59 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:52:59 DEBUG opendrift.models.oceandrift:572: 133 elements penetrated seafloor, lifting up
10:52:59 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:52:59 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:52:59 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:52:59 DEBUG opendrift.models.oceandrift:572: 137 elements penetrated seafloor, lifting up
10:52:59 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:52:59 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:52:59 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:52:59 DEBUG opendrift.models.oceandrift:572: 138 elements penetrated seafloor, lifting up
10:52:59 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:52:59 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:52:59 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:52:59 DEBUG opendrift.models.oceandrift:572: 132 elements penetrated seafloor, lifting up
10:52:59 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:52:59 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:52:59 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:52:59 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:52:59 DEBUG opendrift.models.basemodel:2945: 1007 active elements (0 deactivated)
10:52:59 DEBUG opendrift.models.basemodel:1658: to be seeded: 8993, already seeded 1007
10:52:59 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:52:59 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:59 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:52:59 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:59 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:59 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:59 DEBUG opendrift.models.basemodel:1253: Data needed for 1042 elements
10:52:59 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:59 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 15:00:00 (before)
2023-08-21 16:00:00 (after)
10:52:59 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 15:00:00) in space (linearNDFast)
10:52:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:52:59 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:52:59 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:59 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:52:59 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:52:59 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:52:59 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.59764 (min) 12.7154 (max)
10:52:59 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:52:59 DEBUG opendrift.models.basemodel:1527: 1042 active elements
10:52:59 DEBUG opendrift.models.basemodel:1538: 59.13547210620996 <- latitude -> 59.17642760616806
10:52:59 DEBUG opendrift.models.basemodel:1543: 10.949428749010462 <- longitude -> 11.019366703665263
10:52:59 DEBUG opendrift.models.basemodel:1548: -12.617347717285156 <- z -> 0.0
10:52:59 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:52:59 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
10:52:59 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:52:59 INFO opendrift.models.basemodel:2882: 2023-08-21 15:42:19.552469 - step 30 of 216 - 1042 active elements (0 deactivated)
10:52:59 DEBUG opendrift.models.basemodel:2888: 8958 elements scheduled.
10:52:59 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:52:59 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:59 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:52:59 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:59 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:52:59 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:59 DEBUG opendrift.models.basemodel:1253: Data needed for 1042 elements
10:52:59 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:52:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:52:59 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:52:59 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:52:59 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:52:59 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:52:59 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:52:59 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:52:59 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:59 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:52:59 DEBUG opendrift.models.basemodel:1253: Data needed for 1042 elements
10:52:59 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:52:59 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 15:00:00 (before)
2023-08-21 16:00:00 (after)
10:53:00 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:00 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:00 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:00 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:00 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:00 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:00 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 20x19x5) for time after (2023-08-21 16:00:00)
10:53:00 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 15:00:00) in space (linearNDFast)
10:53:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:00 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 16:00:00) in space (linearNDFast)
10:53:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 194 elements, expanding data 1
10:53:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 194 elements, expanding data 1
10:53:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 219 elements, expanding data 1
10:53:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:53:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 219 elements, expanding data 1
10:53:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:53:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 219 elements, expanding data 1
10:53:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:53:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 219 elements, expanding data 1
10:53:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:53:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 219 elements, expanding data 1
10:53:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:53:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 607 elements, expanding data 1
10:53:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 2
10:53:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 607 elements, expanding data 1
10:53:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 2
10:53:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 607 elements, expanding data 1
10:53:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 2
10:53:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 607 elements, expanding data 1
10:53:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 2
10:53:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 607 elements, expanding data 1
10:53:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 2
10:53:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 194 elements, expanding data 1
10:53:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 194 elements, expanding data 1
10:53:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 194 elements, expanding data 1
10:53:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 194 elements, expanding data 1
10:53:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 194 elements, expanding data 1
10:53:00 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 15:00:00, weight 0.29) and
after (2023-08-21 16:00:00, weight 0.71) in time
10:53:00 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05058180299851 and -58.980643847964586 degrees.
10:53:00 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05058180299851 and -58.980643847964586 degrees.
10:53:00 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:00 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:00 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:00 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:00 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:00 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:00 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.62359 (min) 0.883204 (max)
10:53:00 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.900626 (min) 0.579625 (max)
10:53:00 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000436179 (min) 0.000248386 (max)
10:53:00 DEBUG opendrift.models.basemodel:1524: x_wind: 0.0135295 (min) 13.7075 (max)
10:53:00 DEBUG opendrift.models.basemodel:1524: y_wind: -1.47023 (min) 12.8429 (max)
10:53:00 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:00 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:00 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:00 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:00 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:00 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:00 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:00 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.59764 (min) 12.7154 (max)
10:53:00 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:00 DEBUG opendrift.models.basemodel:1527: 1042 active elements
10:53:00 DEBUG opendrift.models.basemodel:1538: 59.13547210620996 <- latitude -> 59.17642760616806
10:53:00 DEBUG opendrift.models.basemodel:1543: 10.949428749010462 <- longitude -> 11.019366703665263
10:53:00 DEBUG opendrift.models.basemodel:1548: -12.617347717285156 <- z -> 0.0
10:53:00 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:00 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:00 DEBUG opendrift.models.physics_methods:940: min: 2.901130, mean: 7.596608, max: 13.007542
10:53:00 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 2.901130, mean: 7.596608, max: 13.007542
10:53:00 DEBUG opendrift.models.basemodel:813: 71 elements hit coastline, moving back to water
10:53:00 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:53:00 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:00 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:00 DEBUG opendrift.models.physics_methods:741: Advecting 40 of 1042 elements above 0.100m with wind-sheared ocean current (0.005764 m/s - 0.248156 m/s)
10:53:00 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:00 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:00 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.20936364247901915
10:53:00 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:00 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:00 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:00 DEBUG opendrift.models.oceandrift:572: 154 elements penetrated seafloor, lifting up
10:53:00 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:53:00 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:53:00 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:53:00 DEBUG opendrift.models.oceandrift:572: 142 elements penetrated seafloor, lifting up
10:53:00 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:53:00 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:53:00 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:53:00 DEBUG opendrift.models.oceandrift:572: 129 elements penetrated seafloor, lifting up
10:53:00 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:53:00 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:53:00 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:53:00 DEBUG opendrift.models.oceandrift:572: 130 elements penetrated seafloor, lifting up
10:53:00 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:53:00 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:53:00 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:53:00 DEBUG opendrift.models.oceandrift:572: 121 elements penetrated seafloor, lifting up
10:53:00 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:00 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:00 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:00 DEBUG opendrift.models.oceandrift:572: 138 elements penetrated seafloor, lifting up
10:53:00 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:53:00 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:53:00 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:53:00 DEBUG opendrift.models.oceandrift:572: 122 elements penetrated seafloor, lifting up
10:53:00 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:53:00 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:53:00 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:53:00 DEBUG opendrift.models.oceandrift:572: 126 elements penetrated seafloor, lifting up
10:53:00 DEBUG opendrift.models.oceandrift:590: 2 elements reached seafloor, set to bottom
10:53:00 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:53:00 DEBUG opendrift.models.sedimentdrift:112: Settling 2 elements at seafloor
10:53:00 DEBUG opendrift.models.oceandrift:572: 129 elements penetrated seafloor, lifting up
10:53:00 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:53:00 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:53:00 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:53:00 DEBUG opendrift.models.oceandrift:572: 143 elements penetrated seafloor, lifting up
10:53:00 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:53:00 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:53:00 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:53:00 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:00 DEBUG opendrift.models.basemodel:2945: 1042 active elements (0 deactivated)
10:53:00 DEBUG opendrift.models.basemodel:1658: to be seeded: 8958, already seeded 1042
10:53:00 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:00 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:00 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:00 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:00 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:00 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:00 DEBUG opendrift.models.basemodel:1253: Data needed for 1077 elements
10:53:00 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:00 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 15:00:00 (before)
2023-08-21 16:00:00 (after)
10:53:00 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 15:00:00) in space (linearNDFast)
10:53:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:00 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:00 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:00 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:00 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:00 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:00 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.36202 (min) 13.016 (max)
10:53:00 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:00 DEBUG opendrift.models.basemodel:1527: 1077 active elements
10:53:00 DEBUG opendrift.models.basemodel:1538: 59.13352589099229 <- latitude -> 59.17799576738079
10:53:00 DEBUG opendrift.models.basemodel:1543: 10.946992524842583 <- longitude -> 11.018007635961844
10:53:00 DEBUG opendrift.models.basemodel:1548: -12.617347717285156 <- z -> 0.0
10:53:00 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:00 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
10:53:00 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:00 INFO opendrift.models.basemodel:2882: 2023-08-21 15:52:19.552469 - step 31 of 216 - 1077 active elements (0 deactivated)
10:53:00 DEBUG opendrift.models.basemodel:2888: 8923 elements scheduled.
10:53:00 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:00 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:00 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:00 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:00 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:00 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:00 DEBUG opendrift.models.basemodel:1253: Data needed for 1077 elements
10:53:00 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:00 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:00 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:00 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:00 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:00 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:00 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:00 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:00 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:00 DEBUG opendrift.models.basemodel:1253: Data needed for 1077 elements
10:53:00 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:00 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 15:00:00 (before)
2023-08-21 16:00:00 (after)
10:53:01 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:01 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:01 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:01 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:01 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:01 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:01 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 20x19x5) for time after (2023-08-21 16:00:00)
10:53:01 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 15:00:00) in space (linearNDFast)
10:53:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:01 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 16:00:00) in space (linearNDFast)
10:53:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 213 elements, expanding data 1
10:53:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 213 elements, expanding data 1
10:53:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 241 elements, expanding data 1
10:53:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
10:53:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 241 elements, expanding data 1
10:53:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
10:53:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 241 elements, expanding data 1
10:53:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
10:53:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 241 elements, expanding data 1
10:53:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
10:53:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 241 elements, expanding data 1
10:53:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
10:53:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 645 elements, expanding data 1
10:53:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
10:53:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 645 elements, expanding data 1
10:53:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
10:53:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 645 elements, expanding data 1
10:53:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
10:53:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 645 elements, expanding data 1
10:53:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
10:53:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 645 elements, expanding data 1
10:53:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 47 elements, expanding data 2
10:53:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 213 elements, expanding data 1
10:53:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 213 elements, expanding data 1
10:53:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 213 elements, expanding data 1
10:53:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 213 elements, expanding data 1
10:53:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 213 elements, expanding data 1
10:53:01 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 15:00:00, weight 0.13) and
after (2023-08-21 16:00:00, weight 0.87) in time
10:53:01 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0530180357739 and -58.98200290921358 degrees.
10:53:01 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0530180357739 and -58.98200290921358 degrees.
10:53:01 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:01 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:01 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:01 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:01 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:01 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:01 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.678258 (min) 0.954433 (max)
10:53:01 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.748183 (min) 0.522125 (max)
10:53:01 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000397895 (min) 0.000251442 (max)
10:53:01 DEBUG opendrift.models.basemodel:1524: x_wind: 0.619149 (min) 13.5037 (max)
10:53:01 DEBUG opendrift.models.basemodel:1524: y_wind: -1.90248 (min) 10.8529 (max)
10:53:01 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:01 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:01 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:01 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:01 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:01 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:01 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:01 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.36202 (min) 13.016 (max)
10:53:01 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:01 DEBUG opendrift.models.basemodel:1527: 1077 active elements
10:53:01 DEBUG opendrift.models.basemodel:1538: 59.13352589099229 <- latitude -> 59.17799576738079
10:53:01 DEBUG opendrift.models.basemodel:1543: 10.946992524842583 <- longitude -> 11.018007635961844
10:53:01 DEBUG opendrift.models.basemodel:1548: -12.617347717285156 <- z -> 0.0
10:53:01 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:01 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:01 DEBUG opendrift.models.physics_methods:940: min: 1.260321, mean: 7.660419, max: 12.747299
10:53:01 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 1.260321, mean: 7.660419, max: 12.747299
10:53:01 DEBUG opendrift.models.basemodel:813: 66 elements hit coastline, moving back to water
10:53:01 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:53:01 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:01 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:01 DEBUG opendrift.models.physics_methods:741: Advecting 38 of 1077 elements above 0.100m with wind-sheared ocean current (0.062479 m/s - 0.272852 m/s)
10:53:01 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:01 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:01 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.20107011946781156
10:53:01 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:01 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:01 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:01 DEBUG opendrift.models.oceandrift:572: 155 elements penetrated seafloor, lifting up
10:53:01 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:53:01 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:53:01 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:53:01 DEBUG opendrift.models.oceandrift:572: 150 elements penetrated seafloor, lifting up
10:53:01 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:53:01 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:53:01 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:53:01 DEBUG opendrift.models.oceandrift:572: 149 elements penetrated seafloor, lifting up
10:53:01 DEBUG opendrift.models.oceandrift:590: 15 elements reached seafloor, set to bottom
10:53:01 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
10:53:01 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
10:53:01 DEBUG opendrift.models.oceandrift:572: 144 elements penetrated seafloor, lifting up
10:53:01 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:53:01 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:53:01 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:53:01 DEBUG opendrift.models.oceandrift:572: 150 elements penetrated seafloor, lifting up
10:53:01 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:53:01 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:53:01 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:53:01 DEBUG opendrift.models.oceandrift:572: 172 elements penetrated seafloor, lifting up
10:53:01 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:53:01 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:53:01 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:53:01 DEBUG opendrift.models.oceandrift:572: 141 elements penetrated seafloor, lifting up
10:53:01 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:53:01 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:53:01 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:53:01 DEBUG opendrift.models.oceandrift:572: 141 elements penetrated seafloor, lifting up
10:53:01 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:53:01 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:53:01 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:53:01 DEBUG opendrift.models.oceandrift:572: 164 elements penetrated seafloor, lifting up
10:53:01 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:53:01 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:53:01 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:53:01 DEBUG opendrift.models.oceandrift:572: 153 elements penetrated seafloor, lifting up
10:53:01 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:01 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:01 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:01 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:01 DEBUG opendrift.models.basemodel:2945: 1077 active elements (0 deactivated)
10:53:01 DEBUG opendrift.models.basemodel:1658: to be seeded: 8923, already seeded 1077
10:53:01 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:01 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:01 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:01 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:01 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:01 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:01 DEBUG opendrift.models.basemodel:1253: Data needed for 1112 elements
10:53:01 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:01 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 16:00:00 (before)
2023-08-21 17:00:00 (after)
10:53:01 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 16:00:00) in space (linearNDFast)
10:53:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:01 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:01 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:01 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:01 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:01 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:01 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.25881 (min) 13.29 (max)
10:53:01 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:01 DEBUG opendrift.models.basemodel:1527: 1112 active elements
10:53:01 DEBUG opendrift.models.basemodel:1538: 59.13076947019518 <- latitude -> 59.178809119821615
10:53:01 DEBUG opendrift.models.basemodel:1543: 10.94669070599471 <- longitude -> 11.01520707586864
10:53:01 DEBUG opendrift.models.basemodel:1548: -12.607347717285156 <- z -> 0.0
10:53:01 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:01 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
10:53:01 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:01 INFO opendrift.models.basemodel:2882: 2023-08-21 16:02:19.552469 - step 32 of 216 - 1112 active elements (0 deactivated)
10:53:01 DEBUG opendrift.models.basemodel:2888: 8888 elements scheduled.
10:53:01 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:01 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:01 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:01 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:01 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:01 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:01 DEBUG opendrift.models.basemodel:1253: Data needed for 1112 elements
10:53:01 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:01 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:01 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:01 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:01 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:01 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:01 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:01 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:01 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:01 DEBUG opendrift.models.basemodel:1253: Data needed for 1112 elements
10:53:01 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:01 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 16:00:00 (before)
2023-08-21 17:00:00 (after)
10:53:02 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:02 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:02 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:02 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:02 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:02 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:02 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 21x18x5) for time after (2023-08-21 17:00:00)
10:53:02 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 16:00:00) in space (linearNDFast)
10:53:02 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:02 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 17:00:00) in space (linearNDFast)
10:53:02 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 237 elements, expanding data 1
10:53:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 237 elements, expanding data 1
10:53:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 263 elements, expanding data 1
10:53:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
10:53:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 263 elements, expanding data 1
10:53:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
10:53:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 263 elements, expanding data 1
10:53:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
10:53:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 263 elements, expanding data 1
10:53:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
10:53:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 263 elements, expanding data 1
10:53:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
10:53:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 664 elements, expanding data 1
10:53:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 2
10:53:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 664 elements, expanding data 1
10:53:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 2
10:53:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 664 elements, expanding data 1
10:53:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 2
10:53:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 664 elements, expanding data 1
10:53:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 2
10:53:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 664 elements, expanding data 1
10:53:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 2
10:53:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 237 elements, expanding data 1
10:53:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 237 elements, expanding data 1
10:53:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 237 elements, expanding data 1
10:53:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 237 elements, expanding data 1
10:53:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 237 elements, expanding data 1
10:53:02 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 16:00:00, weight 0.96) and
after (2023-08-21 17:00:00, weight 0.04) in time
10:53:02 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05331984940315 and -58.984803466131375 degrees.
10:53:02 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05331984940315 and -58.984803466131375 degrees.
10:53:02 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:02 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:02 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:02 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:02 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:02 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:02 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.605744 (min) 1.19421 (max)
10:53:02 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.958885 (min) 0.544898 (max)
10:53:02 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000381702 (min) 0.000257887 (max)
10:53:02 DEBUG opendrift.models.basemodel:1524: x_wind: 0.231007 (min) 13.6901 (max)
10:53:02 DEBUG opendrift.models.basemodel:1524: y_wind: -1.89095 (min) 11.5225 (max)
10:53:02 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:02 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:02 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:02 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:02 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:02 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:02 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:02 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.25881 (min) 13.29 (max)
10:53:02 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:02 DEBUG opendrift.models.basemodel:1527: 1112 active elements
10:53:02 DEBUG opendrift.models.basemodel:1538: 59.13076947019518 <- latitude -> 59.178809119821615
10:53:02 DEBUG opendrift.models.basemodel:1543: 10.94669070599471 <- longitude -> 11.01520707586864
10:53:02 DEBUG opendrift.models.basemodel:1548: -12.607347717285156 <- z -> 0.0
10:53:02 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:02 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:02 DEBUG opendrift.models.physics_methods:940: min: 2.943130, mean: 7.740201, max: 13.073893
10:53:02 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 2.943130, mean: 7.740201, max: 13.073893
10:53:02 DEBUG opendrift.models.basemodel:813: 70 elements hit coastline, moving back to water
10:53:02 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
10:53:02 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:02 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:02 DEBUG opendrift.models.physics_methods:741: Advecting 43 of 1112 elements above 0.100m with wind-sheared ocean current (0.002439 m/s - 0.253916 m/s)
10:53:02 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:02 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:02 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.21150497434719082
10:53:02 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:02 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:02 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:02 DEBUG opendrift.models.oceandrift:572: 177 elements penetrated seafloor, lifting up
10:53:02 DEBUG opendrift.models.oceandrift:590: 11 elements reached seafloor, set to bottom
10:53:02 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:53:02 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
10:53:02 DEBUG opendrift.models.oceandrift:572: 160 elements penetrated seafloor, lifting up
10:53:02 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:53:02 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:53:02 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:53:02 DEBUG opendrift.models.oceandrift:572: 137 elements penetrated seafloor, lifting up
10:53:02 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:53:02 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:53:02 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:53:02 DEBUG opendrift.models.oceandrift:572: 155 elements penetrated seafloor, lifting up
10:53:02 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:02 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:02 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:02 DEBUG opendrift.models.oceandrift:572: 131 elements penetrated seafloor, lifting up
10:53:02 DEBUG opendrift.models.oceandrift:590: 11 elements reached seafloor, set to bottom
10:53:02 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:53:02 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
10:53:02 DEBUG opendrift.models.oceandrift:572: 151 elements penetrated seafloor, lifting up
10:53:02 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:53:02 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:53:02 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:53:02 DEBUG opendrift.models.oceandrift:572: 131 elements penetrated seafloor, lifting up
10:53:02 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:53:02 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:53:02 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:53:02 DEBUG opendrift.models.oceandrift:572: 151 elements penetrated seafloor, lifting up
10:53:02 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:53:02 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:53:02 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:53:02 DEBUG opendrift.models.oceandrift:572: 125 elements penetrated seafloor, lifting up
10:53:02 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:53:02 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:53:02 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:53:02 DEBUG opendrift.models.oceandrift:572: 130 elements penetrated seafloor, lifting up
10:53:02 DEBUG opendrift.models.oceandrift:590: 11 elements reached seafloor, set to bottom
10:53:02 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:53:02 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
10:53:02 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:02 DEBUG opendrift.models.basemodel:2945: 1112 active elements (0 deactivated)
10:53:02 DEBUG opendrift.models.basemodel:1658: to be seeded: 8888, already seeded 1112
10:53:02 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:53:02 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:02 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:02 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:02 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:02 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:02 DEBUG opendrift.models.basemodel:1253: Data needed for 1146 elements
10:53:02 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:02 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 16:00:00 (before)
2023-08-21 17:00:00 (after)
10:53:02 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 16:00:00) in space (linearNDFast)
10:53:02 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:02 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:02 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:02 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:02 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:02 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:02 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.26363 (min) 13.4852 (max)
10:53:02 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:02 DEBUG opendrift.models.basemodel:1527: 1146 active elements
10:53:02 DEBUG opendrift.models.basemodel:1538: 59.12933636227464 <- latitude -> 59.17631718852536
10:53:02 DEBUG opendrift.models.basemodel:1543: 10.947329173721085 <- longitude -> 11.020136713466568
10:53:02 DEBUG opendrift.models.basemodel:1548: -12.550877228351952 <- z -> 0.0
10:53:02 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:02 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:53:02 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:02 INFO opendrift.models.basemodel:2882: 2023-08-21 16:12:19.552469 - step 33 of 216 - 1146 active elements (0 deactivated)
10:53:02 DEBUG opendrift.models.basemodel:2888: 8854 elements scheduled.
10:53:02 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:02 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:02 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:02 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:02 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:02 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:02 DEBUG opendrift.models.basemodel:1253: Data needed for 1146 elements
10:53:02 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:02 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:02 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:02 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:02 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:02 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:02 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:02 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:02 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:02 DEBUG opendrift.models.basemodel:1253: Data needed for 1146 elements
10:53:02 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:02 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 16:00:00 (before)
2023-08-21 17:00:00 (after)
10:53:03 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:03 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:03 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:03 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:03 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:03 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:03 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 20x19x5) for time after (2023-08-21 17:00:00)
10:53:03 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 16:00:00) in space (linearNDFast)
10:53:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:03 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 17:00:00) in space (linearNDFast)
10:53:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 253 elements, expanding data 1
10:53:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 253 elements, expanding data 1
10:53:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 288 elements, expanding data 1
10:53:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
10:53:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 288 elements, expanding data 1
10:53:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
10:53:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 288 elements, expanding data 1
10:53:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
10:53:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 288 elements, expanding data 1
10:53:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
10:53:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 288 elements, expanding data 1
10:53:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 2
10:53:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 699 elements, expanding data 1
10:53:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 2
10:53:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 699 elements, expanding data 1
10:53:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 2
10:53:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 699 elements, expanding data 1
10:53:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 2
10:53:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 699 elements, expanding data 1
10:53:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 2
10:53:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 699 elements, expanding data 1
10:53:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 56 elements, expanding data 2
10:53:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 253 elements, expanding data 1
10:53:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 253 elements, expanding data 1
10:53:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 253 elements, expanding data 1
10:53:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 253 elements, expanding data 1
10:53:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 253 elements, expanding data 1
10:53:03 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 16:00:00, weight 0.79) and
after (2023-08-21 17:00:00, weight 0.21) in time
10:53:03 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0526813776394 and -58.979873846325006 degrees.
10:53:03 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0526813776394 and -58.979873846325006 degrees.
10:53:03 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:03 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:03 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:03 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:03 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:03 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:03 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.643969 (min) 0.953429 (max)
10:53:03 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.88223 (min) 0.660512 (max)
10:53:03 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000385317 (min) 0.000285611 (max)
10:53:03 DEBUG opendrift.models.basemodel:1524: x_wind: 1.30203 (min) 13.7901 (max)
10:53:03 DEBUG opendrift.models.basemodel:1524: y_wind: -2.1568 (min) 12.4232 (max)
10:53:03 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:03 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:03 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:03 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:03 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:03 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:03 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:03 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.26363 (min) 13.4852 (max)
10:53:03 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:03 DEBUG opendrift.models.basemodel:1527: 1146 active elements
10:53:03 DEBUG opendrift.models.basemodel:1538: 59.12933636227464 <- latitude -> 59.17631718852536
10:53:03 DEBUG opendrift.models.basemodel:1543: 10.947329173721085 <- longitude -> 11.020136713466568
10:53:03 DEBUG opendrift.models.basemodel:1548: -12.550877228351952 <- z -> 0.0
10:53:03 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:03 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:03 DEBUG opendrift.models.physics_methods:940: min: 2.137547, mean: 7.664365, max: 14.170067
10:53:03 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 2.137547, mean: 7.664365, max: 14.170067
10:53:03 DEBUG opendrift.models.basemodel:813: 67 elements hit coastline, moving back to water
10:53:03 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:53:03 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:03 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:03 DEBUG opendrift.models.physics_methods:741: Advecting 39 of 1146 elements above 0.100m with wind-sheared ocean current (0.022077 m/s - 0.275240 m/s)
10:53:03 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:03 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:03 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.24845812827976224
10:53:03 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:03 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:03 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:03 DEBUG opendrift.models.oceandrift:572: 181 elements penetrated seafloor, lifting up
10:53:03 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:03 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:03 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:03 DEBUG opendrift.models.oceandrift:572: 158 elements penetrated seafloor, lifting up
10:53:03 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:53:03 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:53:03 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:53:03 DEBUG opendrift.models.oceandrift:572: 146 elements penetrated seafloor, lifting up
10:53:03 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:53:03 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:53:03 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:53:03 DEBUG opendrift.models.oceandrift:572: 159 elements penetrated seafloor, lifting up
10:53:03 DEBUG opendrift.models.oceandrift:590: 14 elements reached seafloor, set to bottom
10:53:03 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
10:53:03 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
10:53:03 DEBUG opendrift.models.oceandrift:572: 161 elements penetrated seafloor, lifting up
10:53:03 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:53:03 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:53:03 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:53:03 DEBUG opendrift.models.oceandrift:572: 147 elements penetrated seafloor, lifting up
10:53:03 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:53:03 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:53:03 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:53:03 DEBUG opendrift.models.oceandrift:572: 151 elements penetrated seafloor, lifting up
10:53:03 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:53:03 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:53:03 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:53:03 DEBUG opendrift.models.oceandrift:572: 153 elements penetrated seafloor, lifting up
10:53:03 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:53:03 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:53:03 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:53:03 DEBUG opendrift.models.oceandrift:572: 149 elements penetrated seafloor, lifting up
10:53:03 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:03 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:03 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:03 DEBUG opendrift.models.oceandrift:572: 132 elements penetrated seafloor, lifting up
10:53:03 DEBUG opendrift.models.oceandrift:590: 13 elements reached seafloor, set to bottom
10:53:03 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
10:53:03 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
10:53:03 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:03 DEBUG opendrift.models.basemodel:2945: 1146 active elements (0 deactivated)
10:53:03 DEBUG opendrift.models.basemodel:1658: to be seeded: 8854, already seeded 1146
10:53:03 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:03 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:03 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:03 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:03 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:03 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:03 DEBUG opendrift.models.basemodel:1253: Data needed for 1181 elements
10:53:03 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:03 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 16:00:00 (before)
2023-08-21 17:00:00 (after)
10:53:03 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 16:00:00) in space (linearNDFast)
10:53:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:03 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:03 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:03 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:03 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:03 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:03 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.31817 (min) 13.5854 (max)
10:53:03 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:03 DEBUG opendrift.models.basemodel:1527: 1181 active elements
10:53:03 DEBUG opendrift.models.basemodel:1538: 59.12827545215692 <- latitude -> 59.17532560672227
10:53:03 DEBUG opendrift.models.basemodel:1543: 10.943567831559962 <- longitude -> 11.021234851671982
10:53:03 DEBUG opendrift.models.basemodel:1548: -12.078761421778104 <- z -> 0.0
10:53:03 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:03 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:53:03 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:03 INFO opendrift.models.basemodel:2882: 2023-08-21 16:22:19.552469 - step 34 of 216 - 1181 active elements (0 deactivated)
10:53:03 DEBUG opendrift.models.basemodel:2888: 8819 elements scheduled.
10:53:03 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:03 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:03 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:03 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:03 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:03 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:03 DEBUG opendrift.models.basemodel:1253: Data needed for 1181 elements
10:53:03 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:03 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:03 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:03 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:03 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:03 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:03 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:03 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:03 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:03 DEBUG opendrift.models.basemodel:1253: Data needed for 1181 elements
10:53:03 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:03 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 16:00:00 (before)
2023-08-21 17:00:00 (after)
10:53:04 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:04 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:04 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:04 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:04 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:04 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:04 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 20x19x5) for time after (2023-08-21 17:00:00)
10:53:04 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 16:00:00) in space (linearNDFast)
10:53:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:04 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 17:00:00) in space (linearNDFast)
10:53:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 1
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 1
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 285 elements, expanding data 1
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 285 elements, expanding data 1
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 285 elements, expanding data 1
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 285 elements, expanding data 1
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 285 elements, expanding data 1
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 710 elements, expanding data 1
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 710 elements, expanding data 1
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 710 elements, expanding data 1
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 710 elements, expanding data 1
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 710 elements, expanding data 1
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 1
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 1
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 1
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 1
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 1
10:53:04 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 16:00:00, weight 0.63) and
after (2023-08-21 17:00:00, weight 0.37) in time
10:53:04 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05644272853547 and -58.97877569026387 degrees.
10:53:04 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05644272853547 and -58.97877569026387 degrees.
10:53:04 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:04 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:04 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:04 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:04 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:04 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:04 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.672584 (min) 1.06638 (max)
10:53:04 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.818071 (min) 0.611888 (max)
10:53:04 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000389153 (min) 0.000249157 (max)
10:53:04 DEBUG opendrift.models.basemodel:1524: x_wind: 1.18552 (min) 13.2528 (max)
10:53:04 DEBUG opendrift.models.basemodel:1524: y_wind: -1.57352 (min) 11.0963 (max)
10:53:04 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:04 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:04 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:04 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:04 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:04 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:04 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:04 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.31817 (min) 13.5854 (max)
10:53:04 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:04 DEBUG opendrift.models.basemodel:1527: 1181 active elements
10:53:04 DEBUG opendrift.models.basemodel:1538: 59.12827545215692 <- latitude -> 59.17532560672227
10:53:04 DEBUG opendrift.models.basemodel:1543: 10.943567831559962 <- longitude -> 11.021234851671982
10:53:04 DEBUG opendrift.models.basemodel:1548: -12.078761421778104 <- z -> 0.0
10:53:04 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:04 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:04 DEBUG opendrift.models.physics_methods:940: min: 2.758469, mean: 7.701364, max: 13.154223
10:53:04 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 2.758469, mean: 7.701364, max: 13.154223
10:53:04 DEBUG opendrift.models.basemodel:813: 68 elements hit coastline, moving back to water
10:53:04 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:53:04 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:04 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:04 DEBUG opendrift.models.physics_methods:741: Advecting 39 of 1181 elements above 0.100m with wind-sheared ocean current (0.001171 m/s - 0.270372 m/s)
10:53:04 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:04 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:04 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.21411201963432308
10:53:04 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:04 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:04 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:04 DEBUG opendrift.models.oceandrift:572: 184 elements penetrated seafloor, lifting up
10:53:04 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:53:04 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:53:04 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:53:04 DEBUG opendrift.models.oceandrift:572: 158 elements penetrated seafloor, lifting up
10:53:04 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:04 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:04 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:04 DEBUG opendrift.models.oceandrift:572: 176 elements penetrated seafloor, lifting up
10:53:04 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:53:04 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:53:04 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:53:04 DEBUG opendrift.models.oceandrift:572: 158 elements penetrated seafloor, lifting up
10:53:04 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:53:04 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:53:04 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:53:04 DEBUG opendrift.models.oceandrift:572: 166 elements penetrated seafloor, lifting up
10:53:04 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:53:04 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:53:04 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:53:04 DEBUG opendrift.models.oceandrift:572: 155 elements penetrated seafloor, lifting up
10:53:04 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:53:04 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:53:04 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:53:04 DEBUG opendrift.models.oceandrift:572: 170 elements penetrated seafloor, lifting up
10:53:04 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:53:04 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:53:04 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:53:04 DEBUG opendrift.models.oceandrift:572: 164 elements penetrated seafloor, lifting up
10:53:04 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:53:04 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:53:04 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:53:04 DEBUG opendrift.models.oceandrift:572: 173 elements penetrated seafloor, lifting up
10:53:04 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:53:04 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:53:04 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:53:04 DEBUG opendrift.models.oceandrift:572: 144 elements penetrated seafloor, lifting up
10:53:04 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:53:04 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:53:04 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:53:04 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:04 DEBUG opendrift.models.basemodel:2945: 1181 active elements (0 deactivated)
10:53:04 DEBUG opendrift.models.basemodel:1658: to be seeded: 8819, already seeded 1181
10:53:04 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:04 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:04 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:04 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:04 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:04 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:04 DEBUG opendrift.models.basemodel:1253: Data needed for 1216 elements
10:53:04 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:04 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 16:00:00 (before)
2023-08-21 17:00:00 (after)
10:53:04 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 16:00:00) in space (linearNDFast)
10:53:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:04 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:04 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:04 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:04 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:04 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:04 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.08323 (min) 13.7677 (max)
10:53:04 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:04 DEBUG opendrift.models.basemodel:1527: 1216 active elements
10:53:04 DEBUG opendrift.models.basemodel:1538: 59.12629507856937 <- latitude -> 59.176520463522806
10:53:04 DEBUG opendrift.models.basemodel:1543: 10.945700099976474 <- longitude -> 11.021511872356896
10:53:04 DEBUG opendrift.models.basemodel:1548: -12.425636817644675 <- z -> 0.0
10:53:04 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:04 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
10:53:04 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:04 INFO opendrift.models.basemodel:2882: 2023-08-21 16:32:19.552469 - step 35 of 216 - 1216 active elements (0 deactivated)
10:53:04 DEBUG opendrift.models.basemodel:2888: 8784 elements scheduled.
10:53:04 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:04 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:04 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:04 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:04 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:04 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:04 DEBUG opendrift.models.basemodel:1253: Data needed for 1216 elements
10:53:04 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:04 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:04 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:04 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:04 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:04 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:04 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:04 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:04 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:04 DEBUG opendrift.models.basemodel:1253: Data needed for 1216 elements
10:53:04 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:04 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 16:00:00 (before)
2023-08-21 17:00:00 (after)
10:53:04 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:04 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:04 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:04 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:04 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:04 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:04 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 21x19x5) for time after (2023-08-21 17:00:00)
10:53:04 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 16:00:00) in space (linearNDFast)
10:53:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:04 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 17:00:00) in space (linearNDFast)
10:53:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 283 elements, expanding data 1
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 283 elements, expanding data 1
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 311 elements, expanding data 1
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 311 elements, expanding data 1
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 311 elements, expanding data 1
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 311 elements, expanding data 1
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 311 elements, expanding data 1
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 740 elements, expanding data 1
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 740 elements, expanding data 1
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 740 elements, expanding data 1
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 740 elements, expanding data 1
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 740 elements, expanding data 1
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 283 elements, expanding data 1
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 283 elements, expanding data 1
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 283 elements, expanding data 1
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 283 elements, expanding data 1
10:53:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 283 elements, expanding data 1
10:53:04 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 16:00:00, weight 0.46) and
after (2023-08-21 17:00:00, weight 0.54) in time
10:53:04 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0543104598622 and -58.978498673053075 degrees.
10:53:04 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0543104598622 and -58.978498673053075 degrees.
10:53:04 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:04 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:04 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:04 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:04 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:04 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:04 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.830212 (min) 1.07937 (max)
10:53:04 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.866178 (min) 0.60638 (max)
10:53:04 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.00039102 (min) 0.000361873 (max)
10:53:04 DEBUG opendrift.models.basemodel:1524: x_wind: 2.13414 (min) 15.0013 (max)
10:53:04 DEBUG opendrift.models.basemodel:1524: y_wind: -3.13638 (min) 10.7119 (max)
10:53:04 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:04 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:04 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:04 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:04 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:04 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:04 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:04 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.08323 (min) 13.7677 (max)
10:53:04 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:04 DEBUG opendrift.models.basemodel:1527: 1216 active elements
10:53:04 DEBUG opendrift.models.basemodel:1538: 59.12629507856937 <- latitude -> 59.176520463522806
10:53:04 DEBUG opendrift.models.basemodel:1543: 10.945700099976474 <- longitude -> 11.021511872356896
10:53:04 DEBUG opendrift.models.basemodel:1548: -12.425636817644675 <- z -> 0.0
10:53:04 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:04 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:04 DEBUG opendrift.models.physics_methods:940: min: 3.032976, mean: 7.659463, max: 12.911678
10:53:04 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 3.032976, mean: 7.659463, max: 12.911678
10:53:04 DEBUG opendrift.models.basemodel:813: 80 elements hit coastline, moving back to water
10:53:04 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:53:04 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:04 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:04 DEBUG opendrift.models.physics_methods:741: Advecting 40 of 1216 elements above 0.100m with wind-sheared ocean current (0.026982 m/s - 0.245878 m/s)
10:53:04 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:04 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:04 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.20628911823566434
10:53:04 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:04 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:04 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:04 DEBUG opendrift.models.oceandrift:572: 181 elements penetrated seafloor, lifting up
10:53:04 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:53:04 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:53:04 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:53:04 DEBUG opendrift.models.oceandrift:572: 161 elements penetrated seafloor, lifting up
10:53:04 DEBUG opendrift.models.oceandrift:590: 13 elements reached seafloor, set to bottom
10:53:04 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
10:53:04 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
10:53:04 DEBUG opendrift.models.oceandrift:572: 163 elements penetrated seafloor, lifting up
10:53:04 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:53:04 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:53:04 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:53:04 DEBUG opendrift.models.oceandrift:572: 178 elements penetrated seafloor, lifting up
10:53:04 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:04 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:04 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:04 DEBUG opendrift.models.oceandrift:572: 170 elements penetrated seafloor, lifting up
10:53:04 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:53:04 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:53:04 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:53:04 DEBUG opendrift.models.oceandrift:572: 152 elements penetrated seafloor, lifting up
10:53:04 DEBUG opendrift.models.oceandrift:590: 19 elements reached seafloor, set to bottom
10:53:04 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
10:53:04 DEBUG opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
10:53:04 DEBUG opendrift.models.oceandrift:572: 147 elements penetrated seafloor, lifting up
10:53:04 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:53:04 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:53:04 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:53:04 DEBUG opendrift.models.oceandrift:572: 169 elements penetrated seafloor, lifting up
10:53:04 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:53:04 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:53:04 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:53:04 DEBUG opendrift.models.oceandrift:572: 169 elements penetrated seafloor, lifting up
10:53:04 DEBUG opendrift.models.oceandrift:590: 1 elements reached seafloor, set to bottom
10:53:04 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:53:04 DEBUG opendrift.models.sedimentdrift:112: Settling 1 elements at seafloor
10:53:04 DEBUG opendrift.models.oceandrift:572: 173 elements penetrated seafloor, lifting up
10:53:04 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:53:04 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:53:04 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:53:04 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:04 DEBUG opendrift.models.basemodel:2945: 1216 active elements (0 deactivated)
10:53:04 DEBUG opendrift.models.basemodel:1658: to be seeded: 8784, already seeded 1216
10:53:04 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:53:04 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:04 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:04 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:04 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:04 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:04 DEBUG opendrift.models.basemodel:1253: Data needed for 1250 elements
10:53:04 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:04 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 16:00:00 (before)
2023-08-21 17:00:00 (after)
10:53:04 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 16:00:00) in space (linearNDFast)
10:53:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:04 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:04 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:04 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:04 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:04 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:04 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.41393 (min) 13.8863 (max)
10:53:04 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:04 DEBUG opendrift.models.basemodel:1527: 1250 active elements
10:53:04 DEBUG opendrift.models.basemodel:1538: 59.12496866896947 <- latitude -> 59.1768042224582
10:53:04 DEBUG opendrift.models.basemodel:1543: 10.943833140274421 <- longitude -> 11.019958805443025
10:53:04 DEBUG opendrift.models.basemodel:1548: -13.469833602905274 <- z -> 0.0
10:53:04 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:04 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
10:53:04 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:04 INFO opendrift.models.basemodel:2882: 2023-08-21 16:42:19.552469 - step 36 of 216 - 1250 active elements (0 deactivated)
10:53:04 DEBUG opendrift.models.basemodel:2888: 8750 elements scheduled.
10:53:04 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:04 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:04 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:04 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:04 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:04 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:04 DEBUG opendrift.models.basemodel:1253: Data needed for 1250 elements
10:53:04 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:04 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:04 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:04 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:04 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:04 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:04 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:04 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:04 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:04 DEBUG opendrift.models.basemodel:1253: Data needed for 1250 elements
10:53:04 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:04 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 16:00:00 (before)
2023-08-21 17:00:00 (after)
10:53:05 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:05 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:05 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:05 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:05 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:05 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:05 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 21x19x5) for time after (2023-08-21 17:00:00)
10:53:05 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 16:00:00) in space (linearNDFast)
10:53:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:05 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 17:00:00) in space (linearNDFast)
10:53:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 298 elements, expanding data 1
10:53:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 298 elements, expanding data 1
10:53:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 337 elements, expanding data 1
10:53:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
10:53:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 337 elements, expanding data 1
10:53:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
10:53:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 337 elements, expanding data 1
10:53:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
10:53:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 337 elements, expanding data 1
10:53:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
10:53:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 337 elements, expanding data 1
10:53:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 2
10:53:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 779 elements, expanding data 1
10:53:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
10:53:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 779 elements, expanding data 1
10:53:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
10:53:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 779 elements, expanding data 1
10:53:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
10:53:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 779 elements, expanding data 1
10:53:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
10:53:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 779 elements, expanding data 1
10:53:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
10:53:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 298 elements, expanding data 1
10:53:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 298 elements, expanding data 1
10:53:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 298 elements, expanding data 1
10:53:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 298 elements, expanding data 1
10:53:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 298 elements, expanding data 1
10:53:05 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 16:00:00, weight 0.29) and
after (2023-08-21 17:00:00, weight 0.71) in time
10:53:05 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05617740794596 and -58.9800517376773 degrees.
10:53:05 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05617740794596 and -58.9800517376773 degrees.
10:53:05 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:05 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:05 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:05 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:05 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:05 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:05 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.676545 (min) 1.05781 (max)
10:53:05 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.865582 (min) 0.651595 (max)
10:53:05 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000390154 (min) 0.000339783 (max)
10:53:05 DEBUG opendrift.models.basemodel:1524: x_wind: 1.70095 (min) 13.799 (max)
10:53:05 DEBUG opendrift.models.basemodel:1524: y_wind: -1.78448 (min) 11.6733 (max)
10:53:05 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:05 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:05 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:05 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:05 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:05 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:05 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:05 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.41393 (min) 13.8863 (max)
10:53:05 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:05 DEBUG opendrift.models.basemodel:1527: 1250 active elements
10:53:05 DEBUG opendrift.models.basemodel:1538: 59.12496866896947 <- latitude -> 59.1768042224582
10:53:05 DEBUG opendrift.models.basemodel:1543: 10.943833140274421 <- longitude -> 11.019958805443025
10:53:05 DEBUG opendrift.models.basemodel:1548: -13.469833602905274 <- z -> 0.0
10:53:05 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:05 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:05 DEBUG opendrift.models.physics_methods:940: min: 1.496491, mean: 7.632574, max: 12.993285
10:53:05 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 1.496491, mean: 7.632574, max: 12.993285
10:53:05 DEBUG opendrift.models.basemodel:813: 72 elements hit coastline, moving back to water
10:53:05 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
10:53:05 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:05 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:05 DEBUG opendrift.models.physics_methods:741: Advecting 38 of 1250 elements above 0.100m with wind-sheared ocean current (0.001175 m/s - 0.234402 m/s)
10:53:05 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:05 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:05 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.20890495589836117
10:53:05 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:05 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:05 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:05 DEBUG opendrift.models.oceandrift:572: 195 elements penetrated seafloor, lifting up
10:53:05 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:53:05 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:53:05 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:53:05 DEBUG opendrift.models.oceandrift:572: 183 elements penetrated seafloor, lifting up
10:53:05 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:53:05 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:53:05 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:53:05 DEBUG opendrift.models.oceandrift:572: 185 elements penetrated seafloor, lifting up
10:53:05 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:05 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:05 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:05 DEBUG opendrift.models.oceandrift:572: 178 elements penetrated seafloor, lifting up
10:53:05 DEBUG opendrift.models.oceandrift:590: 14 elements reached seafloor, set to bottom
10:53:05 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
10:53:05 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
10:53:05 DEBUG opendrift.models.oceandrift:572: 182 elements penetrated seafloor, lifting up
10:53:05 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:05 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:05 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:05 DEBUG opendrift.models.oceandrift:572: 165 elements penetrated seafloor, lifting up
10:53:05 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:53:05 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:53:05 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:53:05 DEBUG opendrift.models.oceandrift:572: 151 elements penetrated seafloor, lifting up
10:53:05 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:53:05 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:53:05 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:53:05 DEBUG opendrift.models.oceandrift:572: 145 elements penetrated seafloor, lifting up
10:53:05 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:05 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:05 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:05 DEBUG opendrift.models.oceandrift:572: 150 elements penetrated seafloor, lifting up
10:53:05 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:53:05 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:53:05 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:53:05 DEBUG opendrift.models.oceandrift:572: 153 elements penetrated seafloor, lifting up
10:53:05 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:05 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:05 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:05 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:05 DEBUG opendrift.models.basemodel:2945: 1250 active elements (0 deactivated)
10:53:05 DEBUG opendrift.models.basemodel:1658: to be seeded: 8750, already seeded 1250
10:53:05 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:05 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:05 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:05 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:05 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:05 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:05 DEBUG opendrift.models.basemodel:1253: Data needed for 1285 elements
10:53:05 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:05 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 16:00:00 (before)
2023-08-21 17:00:00 (after)
10:53:05 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 16:00:00) in space (linearNDFast)
10:53:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:05 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:05 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:05 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:05 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:05 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:05 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.19091 (min) 13.6661 (max)
10:53:05 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:05 DEBUG opendrift.models.basemodel:1527: 1285 active elements
10:53:05 DEBUG opendrift.models.basemodel:1538: 59.12754221249985 <- latitude -> 59.178081919500315
10:53:05 DEBUG opendrift.models.basemodel:1543: 10.943659271491086 <- longitude -> 11.021142219471338
10:53:05 DEBUG opendrift.models.basemodel:1548: -13.143308868408203 <- z -> 0.0
10:53:05 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:05 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:53:05 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:05 INFO opendrift.models.basemodel:2882: 2023-08-21 16:52:19.552469 - step 37 of 216 - 1285 active elements (0 deactivated)
10:53:05 DEBUG opendrift.models.basemodel:2888: 8715 elements scheduled.
10:53:05 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:05 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:05 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:05 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:05 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:05 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:05 DEBUG opendrift.models.basemodel:1253: Data needed for 1285 elements
10:53:05 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:05 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:05 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:05 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:05 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:05 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:05 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:05 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:05 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:05 DEBUG opendrift.models.basemodel:1253: Data needed for 1285 elements
10:53:05 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:05 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 16:00:00 (before)
2023-08-21 17:00:00 (after)
10:53:06 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:06 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:06 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:06 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:06 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:06 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:06 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 21x19x5) for time after (2023-08-21 17:00:00)
10:53:06 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 16:00:00) in space (linearNDFast)
10:53:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:06 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 17:00:00) in space (linearNDFast)
10:53:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 322 elements, expanding data 1
10:53:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 322 elements, expanding data 1
10:53:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 356 elements, expanding data 1
10:53:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
10:53:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 356 elements, expanding data 1
10:53:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
10:53:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 356 elements, expanding data 1
10:53:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
10:53:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 356 elements, expanding data 1
10:53:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
10:53:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 356 elements, expanding data 1
10:53:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
10:53:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 810 elements, expanding data 1
10:53:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 2
10:53:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 810 elements, expanding data 1
10:53:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 2
10:53:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 810 elements, expanding data 1
10:53:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 2
10:53:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 810 elements, expanding data 1
10:53:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 2
10:53:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 810 elements, expanding data 1
10:53:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 2
10:53:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 322 elements, expanding data 1
10:53:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 322 elements, expanding data 1
10:53:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 322 elements, expanding data 1
10:53:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 322 elements, expanding data 1
10:53:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 322 elements, expanding data 1
10:53:06 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 16:00:00, weight 0.13) and
after (2023-08-21 17:00:00, weight 0.87) in time
10:53:06 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.056351290873536 and -58.97886832562333 degrees.
10:53:06 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.056351290873536 and -58.97886832562333 degrees.
10:53:06 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:06 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:06 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:06 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:06 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:06 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:06 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.646359 (min) 0.953812 (max)
10:53:06 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.940054 (min) 0.607445 (max)
10:53:06 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000370738 (min) 0.000257382 (max)
10:53:06 DEBUG opendrift.models.basemodel:1524: x_wind: 0.00135197 (min) 13.7405 (max)
10:53:06 DEBUG opendrift.models.basemodel:1524: y_wind: -1.87049 (min) 11.7194 (max)
10:53:06 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:06 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:06 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:06 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:06 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:06 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:06 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:06 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.19091 (min) 13.6661 (max)
10:53:06 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:06 DEBUG opendrift.models.basemodel:1527: 1285 active elements
10:53:06 DEBUG opendrift.models.basemodel:1538: 59.12754221249985 <- latitude -> 59.178081919500315
10:53:06 DEBUG opendrift.models.basemodel:1543: 10.943659271491086 <- longitude -> 11.021142219471338
10:53:06 DEBUG opendrift.models.basemodel:1548: -13.143308868408203 <- z -> 0.0
10:53:06 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:06 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:06 DEBUG opendrift.models.physics_methods:940: min: 1.290026, mean: 7.678715, max: 12.640124
10:53:06 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 1.290026, mean: 7.678715, max: 12.640124
10:53:06 DEBUG opendrift.models.basemodel:813: 92 elements hit coastline, moving back to water
10:53:06 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:53:06 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:06 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:06 DEBUG opendrift.models.physics_methods:741: Advecting 38 of 1285 elements above 0.100m with wind-sheared ocean current (0.004304 m/s - 0.238509 m/s)
10:53:06 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:06 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:06 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.19770336349685666
10:53:06 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:06 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:06 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:06 DEBUG opendrift.models.oceandrift:572: 190 elements penetrated seafloor, lifting up
10:53:06 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:53:06 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:53:06 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:53:06 DEBUG opendrift.models.oceandrift:572: 180 elements penetrated seafloor, lifting up
10:53:06 DEBUG opendrift.models.oceandrift:590: 17 elements reached seafloor, set to bottom
10:53:06 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
10:53:06 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
10:53:06 DEBUG opendrift.models.oceandrift:572: 173 elements penetrated seafloor, lifting up
10:53:06 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:53:06 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:53:06 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:53:06 DEBUG opendrift.models.oceandrift:572: 159 elements penetrated seafloor, lifting up
10:53:06 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:53:06 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:53:06 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:53:06 DEBUG opendrift.models.oceandrift:572: 171 elements penetrated seafloor, lifting up
10:53:06 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:06 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:06 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:06 DEBUG opendrift.models.oceandrift:572: 187 elements penetrated seafloor, lifting up
10:53:06 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:53:06 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:53:06 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:53:06 DEBUG opendrift.models.oceandrift:572: 190 elements penetrated seafloor, lifting up
10:53:06 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:53:06 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:53:06 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:53:06 DEBUG opendrift.models.oceandrift:572: 154 elements penetrated seafloor, lifting up
10:53:06 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:53:06 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:53:06 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:53:06 DEBUG opendrift.models.oceandrift:572: 183 elements penetrated seafloor, lifting up
10:53:06 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:53:06 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:53:06 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:53:06 DEBUG opendrift.models.oceandrift:572: 152 elements penetrated seafloor, lifting up
10:53:06 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:53:06 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:53:06 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:53:06 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:06 DEBUG opendrift.models.basemodel:2945: 1285 active elements (0 deactivated)
10:53:06 DEBUG opendrift.models.basemodel:1658: to be seeded: 8715, already seeded 1285
10:53:06 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:06 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:06 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:06 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:06 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:06 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:06 DEBUG opendrift.models.basemodel:1253: Data needed for 1320 elements
10:53:06 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:06 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 17:00:00 (before)
2023-08-21 18:00:00 (after)
10:53:06 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 17:00:00) in space (linearNDFast)
10:53:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:06 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:06 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:06 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:06 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:06 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:06 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.26733 (min) 13.828 (max)
10:53:06 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:06 DEBUG opendrift.models.basemodel:1527: 1320 active elements
10:53:06 DEBUG opendrift.models.basemodel:1538: 59.12586435744016 <- latitude -> 59.177993187204954
10:53:06 DEBUG opendrift.models.basemodel:1543: 10.947175028590879 <- longitude -> 11.021656272655113
10:53:06 DEBUG opendrift.models.basemodel:1548: -12.976543426513672 <- z -> 0.0
10:53:06 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:06 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:53:06 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:06 INFO opendrift.models.basemodel:2882: 2023-08-21 17:02:19.552469 - step 38 of 216 - 1320 active elements (0 deactivated)
10:53:06 DEBUG opendrift.models.basemodel:2888: 8680 elements scheduled.
10:53:06 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:06 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:06 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:06 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:06 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:06 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:06 DEBUG opendrift.models.basemodel:1253: Data needed for 1320 elements
10:53:06 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:06 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:06 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:06 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:06 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:06 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:06 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:06 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:06 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:06 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:06 DEBUG opendrift.models.basemodel:1253: Data needed for 1320 elements
10:53:06 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:06 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 17:00:00 (before)
2023-08-21 18:00:00 (after)
10:53:07 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:07 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:07 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:07 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:07 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:07 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:07 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 21x19x5) for time after (2023-08-21 18:00:00)
10:53:07 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 17:00:00) in space (linearNDFast)
10:53:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:07 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 18:00:00) in space (linearNDFast)
10:53:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 345 elements, expanding data 1
10:53:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 345 elements, expanding data 1
10:53:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 380 elements, expanding data 1
10:53:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
10:53:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 380 elements, expanding data 1
10:53:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
10:53:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 380 elements, expanding data 1
10:53:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
10:53:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 380 elements, expanding data 1
10:53:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
10:53:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 380 elements, expanding data 1
10:53:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
10:53:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 862 elements, expanding data 1
10:53:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 2
10:53:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 862 elements, expanding data 1
10:53:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 2
10:53:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 862 elements, expanding data 1
10:53:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 2
10:53:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 862 elements, expanding data 1
10:53:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 2
10:53:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 862 elements, expanding data 1
10:53:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 90 elements, expanding data 2
10:53:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 345 elements, expanding data 1
10:53:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 345 elements, expanding data 1
10:53:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 345 elements, expanding data 1
10:53:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 345 elements, expanding data 1
10:53:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 345 elements, expanding data 1
10:53:07 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 17:00:00, weight 0.96) and
after (2023-08-21 18:00:00, weight 0.04) in time
10:53:07 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05283552637228 and -58.97835427718091 degrees.
10:53:07 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05283552637228 and -58.97835427718091 degrees.
10:53:07 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:07 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:07 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:07 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:07 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:07 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:07 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.674696 (min) 0.934146 (max)
10:53:07 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.844134 (min) 0.698564 (max)
10:53:07 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000373943 (min) 0.000258282 (max)
10:53:07 DEBUG opendrift.models.basemodel:1524: x_wind: 2.02395 (min) 14.1325 (max)
10:53:07 DEBUG opendrift.models.basemodel:1524: y_wind: -2.0723 (min) 10.2009 (max)
10:53:07 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:07 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:07 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:07 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:07 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:07 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:07 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:07 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.26733 (min) 13.828 (max)
10:53:07 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:07 DEBUG opendrift.models.basemodel:1527: 1320 active elements
10:53:07 DEBUG opendrift.models.basemodel:1538: 59.12586435744016 <- latitude -> 59.177993187204954
10:53:07 DEBUG opendrift.models.basemodel:1543: 10.947175028590879 <- longitude -> 11.021656272655113
10:53:07 DEBUG opendrift.models.basemodel:1548: -12.976543426513672 <- z -> 0.0
10:53:07 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:07 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:07 DEBUG opendrift.models.physics_methods:940: min: 2.323680, mean: 7.493708, max: 13.220684
10:53:07 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 2.323680, mean: 7.493708, max: 13.220684
10:53:07 DEBUG opendrift.models.basemodel:813: 94 elements hit coastline, moving back to water
10:53:07 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
10:53:07 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:07 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:07 DEBUG opendrift.models.physics_methods:741: Advecting 38 of 1320 elements above 0.100m with wind-sheared ocean current (0.060878 m/s - 0.262481 m/s)
10:53:07 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:07 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:07 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.21628105278213497
10:53:07 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:07 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:07 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:07 DEBUG opendrift.models.oceandrift:572: 187 elements penetrated seafloor, lifting up
10:53:07 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:53:07 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:53:07 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:53:07 DEBUG opendrift.models.oceandrift:572: 177 elements penetrated seafloor, lifting up
10:53:07 DEBUG opendrift.models.oceandrift:590: 16 elements reached seafloor, set to bottom
10:53:07 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
10:53:07 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
10:53:07 DEBUG opendrift.models.oceandrift:572: 152 elements penetrated seafloor, lifting up
10:53:07 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:53:07 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:53:07 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:53:07 DEBUG opendrift.models.oceandrift:572: 151 elements penetrated seafloor, lifting up
10:53:07 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:07 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:07 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:07 DEBUG opendrift.models.oceandrift:572: 178 elements penetrated seafloor, lifting up
10:53:07 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:53:07 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:53:07 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:53:07 DEBUG opendrift.models.oceandrift:572: 167 elements penetrated seafloor, lifting up
10:53:07 DEBUG opendrift.models.oceandrift:590: 11 elements reached seafloor, set to bottom
10:53:07 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:53:07 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
10:53:07 DEBUG opendrift.models.oceandrift:572: 154 elements penetrated seafloor, lifting up
10:53:07 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:53:07 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:53:07 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:53:07 DEBUG opendrift.models.oceandrift:572: 175 elements penetrated seafloor, lifting up
10:53:07 DEBUG opendrift.models.oceandrift:590: 14 elements reached seafloor, set to bottom
10:53:07 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
10:53:07 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
10:53:07 DEBUG opendrift.models.oceandrift:572: 162 elements penetrated seafloor, lifting up
10:53:07 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:53:07 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:53:07 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:53:07 DEBUG opendrift.models.oceandrift:572: 153 elements penetrated seafloor, lifting up
10:53:07 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:07 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:07 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:07 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:07 DEBUG opendrift.models.basemodel:2945: 1320 active elements (0 deactivated)
10:53:07 DEBUG opendrift.models.basemodel:1658: to be seeded: 8680, already seeded 1320
10:53:07 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:07 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:07 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:07 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:07 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:07 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:07 DEBUG opendrift.models.basemodel:1253: Data needed for 1355 elements
10:53:07 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:07 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 17:00:00 (before)
2023-08-21 18:00:00 (after)
10:53:07 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 17:00:00) in space (linearNDFast)
10:53:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:07 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:07 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:07 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:07 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:07 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:07 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.09673 (min) 13.8023 (max)
10:53:07 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:07 DEBUG opendrift.models.basemodel:1527: 1355 active elements
10:53:07 DEBUG opendrift.models.basemodel:1538: 59.12515868336097 <- latitude -> 59.17802119308098
10:53:07 DEBUG opendrift.models.basemodel:1543: 10.945094277594892 <- longitude -> 11.022828181243899
10:53:07 DEBUG opendrift.models.basemodel:1548: -13.818031539916992 <- z -> 0.0
10:53:07 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:07 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:53:07 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:07 INFO opendrift.models.basemodel:2882: 2023-08-21 17:12:19.552469 - step 39 of 216 - 1355 active elements (0 deactivated)
10:53:07 DEBUG opendrift.models.basemodel:2888: 8645 elements scheduled.
10:53:07 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:07 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:07 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:07 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:07 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:07 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:07 DEBUG opendrift.models.basemodel:1253: Data needed for 1355 elements
10:53:07 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:07 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:07 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:07 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:07 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:07 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:07 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:07 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:07 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:07 DEBUG opendrift.models.basemodel:1253: Data needed for 1355 elements
10:53:07 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:07 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 17:00:00 (before)
2023-08-21 18:00:00 (after)
10:53:08 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:08 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:08 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:08 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:08 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:08 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:08 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 21x19x5) for time after (2023-08-21 18:00:00)
10:53:08 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 17:00:00) in space (linearNDFast)
10:53:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:08 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 18:00:00) in space (linearNDFast)
10:53:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 380 elements, expanding data 1
10:53:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 380 elements, expanding data 1
10:53:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 424 elements, expanding data 1
10:53:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
10:53:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 424 elements, expanding data 1
10:53:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
10:53:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 424 elements, expanding data 1
10:53:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
10:53:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 424 elements, expanding data 1
10:53:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
10:53:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 424 elements, expanding data 1
10:53:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 2
10:53:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 880 elements, expanding data 1
10:53:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 2
10:53:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 880 elements, expanding data 1
10:53:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 2
10:53:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 880 elements, expanding data 1
10:53:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 2
10:53:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 880 elements, expanding data 1
10:53:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 2
10:53:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 880 elements, expanding data 1
10:53:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 2
10:53:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 380 elements, expanding data 1
10:53:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 380 elements, expanding data 1
10:53:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 380 elements, expanding data 1
10:53:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 380 elements, expanding data 1
10:53:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 380 elements, expanding data 1
10:53:08 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 17:00:00, weight 0.79) and
after (2023-08-21 18:00:00, weight 0.21) in time
10:53:08 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05491627747767 and -58.97718237008933 degrees.
10:53:08 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05491627747767 and -58.97718237008933 degrees.
10:53:08 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:08 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:08 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:08 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:08 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:08 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:08 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.67105 (min) 0.990862 (max)
10:53:08 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.82856 (min) 0.651037 (max)
10:53:08 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000377019 (min) 0.000274208 (max)
10:53:08 DEBUG opendrift.models.basemodel:1524: x_wind: 0.19331 (min) 13.6154 (max)
10:53:08 DEBUG opendrift.models.basemodel:1524: y_wind: -1.01156 (min) 10.6577 (max)
10:53:08 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:08 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:08 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:08 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:08 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:08 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:08 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:08 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.09673 (min) 13.8023 (max)
10:53:08 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:08 DEBUG opendrift.models.basemodel:1527: 1355 active elements
10:53:08 DEBUG opendrift.models.basemodel:1538: 59.12515868336097 <- latitude -> 59.17802119308098
10:53:08 DEBUG opendrift.models.basemodel:1543: 10.945094277594892 <- longitude -> 11.022828181243899
10:53:08 DEBUG opendrift.models.basemodel:1548: -13.802265167236328 <- z -> 0.0
10:53:08 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:08 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:08 DEBUG opendrift.models.physics_methods:940: min: 2.602517, mean: 7.479898, max: 13.150224
10:53:08 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 2.602517, mean: 7.479898, max: 13.150224
10:53:08 DEBUG opendrift.models.basemodel:813: 88 elements hit coastline, moving back to water
10:53:08 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:53:08 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:08 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:08 DEBUG opendrift.models.physics_methods:741: Advecting 40 of 1355 elements above 0.100m with wind-sheared ocean current (0.022054 m/s - 0.243943 m/s)
10:53:08 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:08 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:08 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.21398184657199856
10:53:08 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:08 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:08 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:08 DEBUG opendrift.models.oceandrift:572: 210 elements penetrated seafloor, lifting up
10:53:08 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:08 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:08 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:08 DEBUG opendrift.models.oceandrift:572: 177 elements penetrated seafloor, lifting up
10:53:08 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:53:08 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:53:08 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:53:08 DEBUG opendrift.models.oceandrift:572: 159 elements penetrated seafloor, lifting up
10:53:08 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:08 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:08 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:08 DEBUG opendrift.models.oceandrift:572: 182 elements penetrated seafloor, lifting up
10:53:08 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:08 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:08 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:08 DEBUG opendrift.models.oceandrift:572: 166 elements penetrated seafloor, lifting up
10:53:08 DEBUG opendrift.models.oceandrift:590: 11 elements reached seafloor, set to bottom
10:53:08 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:53:08 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
10:53:08 DEBUG opendrift.models.oceandrift:572: 163 elements penetrated seafloor, lifting up
10:53:08 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:53:08 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:53:08 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:53:08 DEBUG opendrift.models.oceandrift:572: 173 elements penetrated seafloor, lifting up
10:53:08 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:53:08 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:53:08 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:53:08 DEBUG opendrift.models.oceandrift:572: 167 elements penetrated seafloor, lifting up
10:53:08 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:08 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:08 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:08 DEBUG opendrift.models.oceandrift:572: 153 elements penetrated seafloor, lifting up
10:53:08 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:53:08 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:53:08 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:53:08 DEBUG opendrift.models.oceandrift:572: 163 elements penetrated seafloor, lifting up
10:53:08 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:53:08 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:53:08 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:53:08 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:08 DEBUG opendrift.models.basemodel:2945: 1355 active elements (0 deactivated)
10:53:08 DEBUG opendrift.models.basemodel:1658: to be seeded: 8645, already seeded 1355
10:53:08 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:53:08 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:08 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:08 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:08 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:08 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:08 DEBUG opendrift.models.basemodel:1253: Data needed for 1389 elements
10:53:08 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:08 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 17:00:00 (before)
2023-08-21 18:00:00 (after)
10:53:08 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 17:00:00) in space (linearNDFast)
10:53:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:08 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:08 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:08 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:08 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:08 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:08 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.08585 (min) 13.7975 (max)
10:53:08 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:08 DEBUG opendrift.models.basemodel:1527: 1389 active elements
10:53:08 DEBUG opendrift.models.basemodel:1538: 59.12387640979165 <- latitude -> 59.17901367741101
10:53:08 DEBUG opendrift.models.basemodel:1543: 10.944775429580094 <- longitude -> 11.02070667826902
10:53:08 DEBUG opendrift.models.basemodel:1548: -12.839776992797852 <- z -> 0.0
10:53:08 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:08 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
10:53:08 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:08 INFO opendrift.models.basemodel:2882: 2023-08-21 17:22:19.552469 - step 40 of 216 - 1389 active elements (0 deactivated)
10:53:08 DEBUG opendrift.models.basemodel:2888: 8611 elements scheduled.
10:53:08 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:08 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:08 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:08 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:08 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:08 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:08 DEBUG opendrift.models.basemodel:1253: Data needed for 1389 elements
10:53:08 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:08 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:08 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:08 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:08 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:08 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:08 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:08 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:08 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:08 DEBUG opendrift.models.basemodel:1253: Data needed for 1389 elements
10:53:08 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:08 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 17:00:00 (before)
2023-08-21 18:00:00 (after)
10:53:09 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:09 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:09 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:09 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:09 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:09 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:09 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 22x19x5) for time after (2023-08-21 18:00:00)
10:53:09 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 17:00:00) in space (linearNDFast)
10:53:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:09 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 18:00:00) in space (linearNDFast)
10:53:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 398 elements, expanding data 1
10:53:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 398 elements, expanding data 1
10:53:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 435 elements, expanding data 1
10:53:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
10:53:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 435 elements, expanding data 1
10:53:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
10:53:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 435 elements, expanding data 1
10:53:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
10:53:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 435 elements, expanding data 1
10:53:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
10:53:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 435 elements, expanding data 1
10:53:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
10:53:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 896 elements, expanding data 1
10:53:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 114 elements, expanding data 2
10:53:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 896 elements, expanding data 1
10:53:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 114 elements, expanding data 2
10:53:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 896 elements, expanding data 1
10:53:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 114 elements, expanding data 2
10:53:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 896 elements, expanding data 1
10:53:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 114 elements, expanding data 2
10:53:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 896 elements, expanding data 1
10:53:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 114 elements, expanding data 2
10:53:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 398 elements, expanding data 1
10:53:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 398 elements, expanding data 1
10:53:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 398 elements, expanding data 1
10:53:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 398 elements, expanding data 1
10:53:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 398 elements, expanding data 1
10:53:09 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 17:00:00, weight 0.63) and
after (2023-08-21 18:00:00, weight 0.37) in time
10:53:09 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05523512760529 and -58.97930386905497 degrees.
10:53:09 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05523512760529 and -58.97930386905497 degrees.
10:53:09 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:09 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:09 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:09 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:09 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:09 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:09 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.604904 (min) 0.957758 (max)
10:53:09 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.04308 (min) 0.668634 (max)
10:53:09 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000368477 (min) 0.000269379 (max)
10:53:09 DEBUG opendrift.models.basemodel:1524: x_wind: 0.298367 (min) 15.2475 (max)
10:53:09 DEBUG opendrift.models.basemodel:1524: y_wind: -2.35241 (min) 10.7872 (max)
10:53:09 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:09 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:09 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:09 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:09 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:09 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:09 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:09 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.08585 (min) 13.7975 (max)
10:53:09 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:09 DEBUG opendrift.models.basemodel:1527: 1389 active elements
10:53:09 DEBUG opendrift.models.basemodel:1538: 59.12387640979165 <- latitude -> 59.17901367741101
10:53:09 DEBUG opendrift.models.basemodel:1543: 10.944775429580094 <- longitude -> 11.02070667826902
10:53:09 DEBUG opendrift.models.basemodel:1548: -12.825286865234375 <- z -> 0.0
10:53:09 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:09 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:09 DEBUG opendrift.models.physics_methods:940: min: 2.358183, mean: 7.445376, max: 13.961676
10:53:09 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 2.358183, mean: 7.445376, max: 13.961676
10:53:09 DEBUG opendrift.models.basemodel:813: 103 elements hit coastline, moving back to water
10:53:09 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:53:09 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:09 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:09 DEBUG opendrift.models.physics_methods:741: Advecting 37 of 1389 elements above 0.100m with wind-sheared ocean current (0.030354 m/s - 0.250053 m/s)
10:53:09 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:09 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:09 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.24120418891914364
10:53:09 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:09 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:09 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:09 DEBUG opendrift.models.oceandrift:572: 185 elements penetrated seafloor, lifting up
10:53:09 DEBUG opendrift.models.oceandrift:590: 14 elements reached seafloor, set to bottom
10:53:09 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
10:53:09 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
10:53:09 DEBUG opendrift.models.oceandrift:572: 181 elements penetrated seafloor, lifting up
10:53:09 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:53:09 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:53:09 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:53:09 DEBUG opendrift.models.oceandrift:572: 178 elements penetrated seafloor, lifting up
10:53:09 DEBUG opendrift.models.oceandrift:590: 11 elements reached seafloor, set to bottom
10:53:09 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:53:09 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
10:53:09 DEBUG opendrift.models.oceandrift:572: 201 elements penetrated seafloor, lifting up
10:53:09 DEBUG opendrift.models.oceandrift:590: 11 elements reached seafloor, set to bottom
10:53:09 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:53:09 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
10:53:09 DEBUG opendrift.models.oceandrift:572: 175 elements penetrated seafloor, lifting up
10:53:09 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:53:09 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:53:09 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:53:09 DEBUG opendrift.models.oceandrift:572: 209 elements penetrated seafloor, lifting up
10:53:09 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:53:09 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:53:09 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:53:09 DEBUG opendrift.models.oceandrift:572: 187 elements penetrated seafloor, lifting up
10:53:09 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:09 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:09 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:09 DEBUG opendrift.models.oceandrift:572: 174 elements penetrated seafloor, lifting up
10:53:09 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:53:09 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:53:09 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:53:09 DEBUG opendrift.models.oceandrift:572: 169 elements penetrated seafloor, lifting up
10:53:09 DEBUG opendrift.models.oceandrift:590: 11 elements reached seafloor, set to bottom
10:53:09 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:53:09 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
10:53:09 DEBUG opendrift.models.oceandrift:572: 146 elements penetrated seafloor, lifting up
10:53:09 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:09 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:09 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:09 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:09 DEBUG opendrift.models.basemodel:2945: 1389 active elements (0 deactivated)
10:53:09 DEBUG opendrift.models.basemodel:1658: to be seeded: 8611, already seeded 1389
10:53:09 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:09 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:09 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:09 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:09 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:09 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:09 DEBUG opendrift.models.basemodel:1253: Data needed for 1424 elements
10:53:09 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:09 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 17:00:00 (before)
2023-08-21 18:00:00 (after)
10:53:09 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 17:00:00) in space (linearNDFast)
10:53:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:09 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:09 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:09 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:09 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:09 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:09 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.11898 (min) 13.7667 (max)
10:53:09 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:09 DEBUG opendrift.models.basemodel:1527: 1424 active elements
10:53:09 DEBUG opendrift.models.basemodel:1538: 59.12437220814227 <- latitude -> 59.179689385071754
10:53:09 DEBUG opendrift.models.basemodel:1543: 10.946326049106164 <- longitude -> 11.024604231872948
10:53:09 DEBUG opendrift.models.basemodel:1548: -13.753009796142578 <- z -> 0.0
10:53:09 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:09 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:53:09 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:09 INFO opendrift.models.basemodel:2882: 2023-08-21 17:32:19.552469 - step 41 of 216 - 1424 active elements (0 deactivated)
10:53:09 DEBUG opendrift.models.basemodel:2888: 8576 elements scheduled.
10:53:09 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:09 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:09 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:09 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:09 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:09 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:09 DEBUG opendrift.models.basemodel:1253: Data needed for 1424 elements
10:53:09 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:09 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:09 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:09 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:09 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:09 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:09 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:09 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:09 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:09 DEBUG opendrift.models.basemodel:1253: Data needed for 1424 elements
10:53:09 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:09 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 17:00:00 (before)
2023-08-21 18:00:00 (after)
10:53:10 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:10 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:10 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:10 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:10 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:10 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:10 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 22x19x5) for time after (2023-08-21 18:00:00)
10:53:10 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 17:00:00) in space (linearNDFast)
10:53:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:10 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 18:00:00) in space (linearNDFast)
10:53:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 408 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 408 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 452 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 452 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 452 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 452 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 452 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 932 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 932 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 932 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 932 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 932 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 408 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 408 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 408 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 408 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 408 elements, expanding data 1
10:53:10 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 17:00:00, weight 0.46) and
after (2023-08-21 18:00:00, weight 0.54) in time
10:53:10 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05368450303919 and -58.975406320770325 degrees.
10:53:10 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05368450303919 and -58.975406320770325 degrees.
10:53:10 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:10 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:10 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:10 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:10 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:10 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:10 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.801819 (min) 1.0682 (max)
10:53:10 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.816 (min) 0.783134 (max)
10:53:10 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000378097 (min) 0.000275255 (max)
10:53:10 DEBUG opendrift.models.basemodel:1524: x_wind: -0.469624 (min) 15.8466 (max)
10:53:10 DEBUG opendrift.models.basemodel:1524: y_wind: -2.3263 (min) 10.2468 (max)
10:53:10 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:10 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:10 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:10 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:10 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:10 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:10 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:10 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.11898 (min) 13.7667 (max)
10:53:10 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:10 DEBUG opendrift.models.basemodel:1527: 1424 active elements
10:53:10 DEBUG opendrift.models.basemodel:1538: 59.12437220814227 <- latitude -> 59.179689385071754
10:53:10 DEBUG opendrift.models.basemodel:1543: 10.946326049106164 <- longitude -> 11.024604231872948
10:53:10 DEBUG opendrift.models.basemodel:1548: -13.753009796142578 <- z -> 0.0
10:53:10 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:10 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:10 DEBUG opendrift.models.physics_methods:940: min: 1.087414, mean: 7.314102, max: 13.963582
10:53:10 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 1.087414, mean: 7.314102, max: 13.963582
10:53:10 DEBUG opendrift.models.basemodel:813: 85 elements hit coastline, moving back to water
10:53:10 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:53:10 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:10 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:10 DEBUG opendrift.models.physics_methods:741: Advecting 43 of 1424 elements above 0.100m with wind-sheared ocean current (0.002484 m/s - 0.240937 m/s)
10:53:10 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:10 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:10 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.24127004345901487
10:53:10 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:10 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:10 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:10 DEBUG opendrift.models.oceandrift:572: 219 elements penetrated seafloor, lifting up
10:53:10 DEBUG opendrift.models.oceandrift:590: 13 elements reached seafloor, set to bottom
10:53:10 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
10:53:10 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
10:53:10 DEBUG opendrift.models.oceandrift:572: 187 elements penetrated seafloor, lifting up
10:53:10 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:10 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:10 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:10 DEBUG opendrift.models.oceandrift:572: 176 elements penetrated seafloor, lifting up
10:53:10 DEBUG opendrift.models.oceandrift:590: 11 elements reached seafloor, set to bottom
10:53:10 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:53:10 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
10:53:10 DEBUG opendrift.models.oceandrift:572: 180 elements penetrated seafloor, lifting up
10:53:10 DEBUG opendrift.models.oceandrift:590: 11 elements reached seafloor, set to bottom
10:53:10 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:53:10 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
10:53:10 DEBUG opendrift.models.oceandrift:572: 192 elements penetrated seafloor, lifting up
10:53:10 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:53:10 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:53:10 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:53:10 DEBUG opendrift.models.oceandrift:572: 161 elements penetrated seafloor, lifting up
10:53:10 DEBUG opendrift.models.oceandrift:590: 11 elements reached seafloor, set to bottom
10:53:10 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:53:10 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
10:53:10 DEBUG opendrift.models.oceandrift:572: 165 elements penetrated seafloor, lifting up
10:53:10 DEBUG opendrift.models.oceandrift:590: 14 elements reached seafloor, set to bottom
10:53:10 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
10:53:10 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
10:53:10 DEBUG opendrift.models.oceandrift:572: 165 elements penetrated seafloor, lifting up
10:53:10 DEBUG opendrift.models.oceandrift:590: 13 elements reached seafloor, set to bottom
10:53:10 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
10:53:10 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
10:53:10 DEBUG opendrift.models.oceandrift:572: 150 elements penetrated seafloor, lifting up
10:53:10 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:10 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:10 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:10 DEBUG opendrift.models.oceandrift:572: 151 elements penetrated seafloor, lifting up
10:53:10 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:10 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:10 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:10 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:10 DEBUG opendrift.models.basemodel:2945: 1424 active elements (0 deactivated)
10:53:10 DEBUG opendrift.models.basemodel:1658: to be seeded: 8576, already seeded 1424
10:53:10 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:10 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:10 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:10 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:10 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:10 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:10 DEBUG opendrift.models.basemodel:1253: Data needed for 1459 elements
10:53:10 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:10 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 17:00:00 (before)
2023-08-21 18:00:00 (after)
10:53:10 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 17:00:00) in space (linearNDFast)
10:53:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:10 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:10 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:10 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:10 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:10 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:10 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.03618 (min) 13.8576 (max)
10:53:10 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:10 DEBUG opendrift.models.basemodel:1527: 1459 active elements
10:53:10 DEBUG opendrift.models.basemodel:1538: 59.123208799673634 <- latitude -> 59.18061251615828
10:53:10 DEBUG opendrift.models.basemodel:1543: 10.94550222715031 <- longitude -> 11.024202748361086
10:53:10 DEBUG opendrift.models.basemodel:1548: -13.745963325500488 <- z -> 0.0
10:53:10 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:10 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
10:53:10 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:10 INFO opendrift.models.basemodel:2882: 2023-08-21 17:42:19.552469 - step 42 of 216 - 1459 active elements (0 deactivated)
10:53:10 DEBUG opendrift.models.basemodel:2888: 8541 elements scheduled.
10:53:10 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:10 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:10 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:10 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:10 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:10 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:10 DEBUG opendrift.models.basemodel:1253: Data needed for 1459 elements
10:53:10 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:10 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:10 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:10 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:10 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:10 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:10 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:10 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:10 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:10 DEBUG opendrift.models.basemodel:1253: Data needed for 1459 elements
10:53:10 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:10 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 17:00:00 (before)
2023-08-21 18:00:00 (after)
10:53:10 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:10 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:10 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:10 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:10 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:10 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:10 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 21x19x5) for time after (2023-08-21 18:00:00)
10:53:10 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 17:00:00) in space (linearNDFast)
10:53:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:10 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 18:00:00) in space (linearNDFast)
10:53:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 445 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 445 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 484 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 484 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 484 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 484 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 484 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 2
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 972 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 2
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 972 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 2
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 972 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 2
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 972 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 2
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 972 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 2
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 445 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 445 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 445 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 445 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 445 elements, expanding data 1
10:53:10 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 17:00:00, weight 0.29) and
after (2023-08-21 18:00:00, weight 0.71) in time
10:53:10 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05450833171099 and -58.97580779473929 degrees.
10:53:10 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05450833171099 and -58.97580779473929 degrees.
10:53:10 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:10 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:10 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:10 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:10 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:10 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:10 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.694265 (min) 0.82878 (max)
10:53:10 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.90095 (min) 0.793077 (max)
10:53:10 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000359484 (min) 0.0002533 (max)
10:53:10 DEBUG opendrift.models.basemodel:1524: x_wind: 0.658643 (min) 15.7556 (max)
10:53:10 DEBUG opendrift.models.basemodel:1524: y_wind: -4.26967 (min) 10.6099 (max)
10:53:10 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:10 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:10 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:10 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:10 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:10 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:10 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:10 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.03618 (min) 13.8576 (max)
10:53:10 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:10 DEBUG opendrift.models.basemodel:1527: 1459 active elements
10:53:10 DEBUG opendrift.models.basemodel:1538: 59.123208799673634 <- latitude -> 59.18061251615828
10:53:10 DEBUG opendrift.models.basemodel:1543: 10.94550222715031 <- longitude -> 11.024202748361086
10:53:10 DEBUG opendrift.models.basemodel:1548: -13.745963325500488 <- z -> 0.0
10:53:10 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:10 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:10 DEBUG opendrift.models.physics_methods:940: min: 0.792673, mean: 7.310326, max: 14.610806
10:53:10 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.792673, mean: 7.310326, max: 14.610806
10:53:10 DEBUG opendrift.models.basemodel:813: 107 elements hit coastline, moving back to water
10:53:10 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
10:53:10 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:10 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:10 DEBUG opendrift.models.physics_methods:741: Advecting 37 of 1459 elements above 0.100m with wind-sheared ocean current (0.019314 m/s - 0.223416 m/s)
10:53:10 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:10 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:10 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.26415410764606473
10:53:10 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:10 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:10 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:10 DEBUG opendrift.models.oceandrift:572: 198 elements penetrated seafloor, lifting up
10:53:10 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:10 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:10 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:10 DEBUG opendrift.models.oceandrift:572: 188 elements penetrated seafloor, lifting up
10:53:10 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:53:10 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:53:10 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:53:10 DEBUG opendrift.models.oceandrift:572: 171 elements penetrated seafloor, lifting up
10:53:10 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:10 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:10 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:10 DEBUG opendrift.models.oceandrift:572: 168 elements penetrated seafloor, lifting up
10:53:10 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:53:10 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:53:10 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:53:10 DEBUG opendrift.models.oceandrift:572: 186 elements penetrated seafloor, lifting up
10:53:10 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:53:10 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:53:10 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:53:10 DEBUG opendrift.models.oceandrift:572: 176 elements penetrated seafloor, lifting up
10:53:10 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:53:10 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:53:10 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:53:10 DEBUG opendrift.models.oceandrift:572: 198 elements penetrated seafloor, lifting up
10:53:10 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:53:10 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:53:10 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:53:10 DEBUG opendrift.models.oceandrift:572: 161 elements penetrated seafloor, lifting up
10:53:10 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:53:10 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:53:10 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:53:10 DEBUG opendrift.models.oceandrift:572: 190 elements penetrated seafloor, lifting up
10:53:10 DEBUG opendrift.models.oceandrift:590: 16 elements reached seafloor, set to bottom
10:53:10 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
10:53:10 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
10:53:10 DEBUG opendrift.models.oceandrift:572: 181 elements penetrated seafloor, lifting up
10:53:10 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:53:10 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:53:10 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:53:10 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:10 DEBUG opendrift.models.basemodel:2945: 1459 active elements (0 deactivated)
10:53:10 DEBUG opendrift.models.basemodel:1658: to be seeded: 8541, already seeded 1459
10:53:10 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:53:10 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:10 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:10 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:10 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:10 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:10 DEBUG opendrift.models.basemodel:1253: Data needed for 1493 elements
10:53:10 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:10 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 17:00:00 (before)
2023-08-21 18:00:00 (after)
10:53:10 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 17:00:00) in space (linearNDFast)
10:53:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:10 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:10 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:10 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:10 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:10 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:10 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 13.8174 (max)
10:53:10 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:10 DEBUG opendrift.models.basemodel:1527: 1493 active elements
10:53:10 DEBUG opendrift.models.basemodel:1538: 59.122826259422396 <- latitude -> 59.18061198363375
10:53:10 DEBUG opendrift.models.basemodel:1543: 10.945433774872997 <- longitude -> 11.022496045191104
10:53:10 DEBUG opendrift.models.basemodel:1548: -13.161289443969727 <- z -> 0.0
10:53:10 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:10 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
10:53:10 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:10 INFO opendrift.models.basemodel:2882: 2023-08-21 17:52:19.552469 - step 43 of 216 - 1493 active elements (0 deactivated)
10:53:10 DEBUG opendrift.models.basemodel:2888: 8507 elements scheduled.
10:53:10 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:10 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:10 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:10 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:10 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:10 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:10 DEBUG opendrift.models.basemodel:1253: Data needed for 1493 elements
10:53:10 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:10 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:10 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:10 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:10 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:10 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:10 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:10 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:10 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:10 DEBUG opendrift.models.basemodel:1253: Data needed for 1493 elements
10:53:10 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:10 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 17:00:00 (before)
2023-08-21 18:00:00 (after)
10:53:11 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:11 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:11 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:11 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:11 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:11 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:11 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 22x19x5) for time after (2023-08-21 18:00:00)
10:53:11 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 17:00:00) in space (linearNDFast)
10:53:11 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:11 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 18:00:00) in space (linearNDFast)
10:53:11 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 449 elements, expanding data 1
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 449 elements, expanding data 1
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 495 elements, expanding data 1
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 2
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 495 elements, expanding data 1
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 2
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 495 elements, expanding data 1
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 2
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 495 elements, expanding data 1
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 2
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 495 elements, expanding data 1
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 2
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1010 elements, expanding data 1
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 2
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1010 elements, expanding data 1
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 2
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1010 elements, expanding data 1
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 2
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1010 elements, expanding data 1
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 2
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1010 elements, expanding data 1
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 116 elements, expanding data 2
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 449 elements, expanding data 1
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 449 elements, expanding data 1
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 449 elements, expanding data 1
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 449 elements, expanding data 1
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 449 elements, expanding data 1
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:11 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 17:00:00, weight 0.13) and
after (2023-08-21 18:00:00, weight 0.87) in time
10:53:11 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05457678459693 and -58.97751450580319 degrees.
10:53:11 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05457678459693 and -58.97751450580319 degrees.
10:53:11 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:11 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:11 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:11 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:11 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:11 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:11 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.623816 (min) 1.13913 (max)
10:53:11 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.06715 (min) 0.674537 (max)
10:53:11 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000332304 (min) 0.000281032 (max)
10:53:11 DEBUG opendrift.models.basemodel:1524: x_wind: -0.569848 (min) 13.6809 (max)
10:53:11 DEBUG opendrift.models.basemodel:1524: y_wind: -3.19534 (min) 9.07617 (max)
10:53:11 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:11 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:11 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:11 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:11 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:11 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:11 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:11 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 13.8174 (max)
10:53:11 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:11 DEBUG opendrift.models.basemodel:1527: 1493 active elements
10:53:11 DEBUG opendrift.models.basemodel:1538: 59.122826259422396 <- latitude -> 59.18061198363375
10:53:11 DEBUG opendrift.models.basemodel:1543: 10.945433774872997 <- longitude -> 11.022496045191104
10:53:11 DEBUG opendrift.models.basemodel:1548: -13.161289443969727 <- z -> 0.0
10:53:11 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:11 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:11 DEBUG opendrift.models.physics_methods:940: min: 1.964718, mean: 7.190129, max: 12.560353
10:53:11 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 1.964718, mean: 7.190129, max: 12.560353
10:53:11 DEBUG opendrift.models.basemodel:813: 102 elements hit coastline, moving back to water
10:53:11 DEBUG opendrift.models.basemodel:836: Lifting 1 elements to seafloor.
10:53:11 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:11 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:11 DEBUG opendrift.models.physics_methods:741: Advecting 38 of 1493 elements above 0.100m with wind-sheared ocean current (0.011342 m/s - 0.242773 m/s)
10:53:11 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:11 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:11 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.19521589804847714
10:53:11 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:11 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:11 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:11 DEBUG opendrift.models.oceandrift:572: 202 elements penetrated seafloor, lifting up
10:53:11 DEBUG opendrift.models.oceandrift:590: 11 elements reached seafloor, set to bottom
10:53:11 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:53:11 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
10:53:11 DEBUG opendrift.models.oceandrift:572: 200 elements penetrated seafloor, lifting up
10:53:11 DEBUG opendrift.models.oceandrift:590: 13 elements reached seafloor, set to bottom
10:53:11 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
10:53:11 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
10:53:11 DEBUG opendrift.models.oceandrift:572: 164 elements penetrated seafloor, lifting up
10:53:11 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:53:11 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:53:11 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:53:11 DEBUG opendrift.models.oceandrift:572: 169 elements penetrated seafloor, lifting up
10:53:11 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:53:11 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:53:11 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:53:11 DEBUG opendrift.models.oceandrift:572: 179 elements penetrated seafloor, lifting up
10:53:11 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:11 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:11 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:11 DEBUG opendrift.models.oceandrift:572: 182 elements penetrated seafloor, lifting up
10:53:11 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:53:11 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:53:11 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:53:11 DEBUG opendrift.models.oceandrift:572: 165 elements penetrated seafloor, lifting up
10:53:11 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:11 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:11 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:11 DEBUG opendrift.models.oceandrift:572: 164 elements penetrated seafloor, lifting up
10:53:11 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:53:11 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:53:11 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:53:11 DEBUG opendrift.models.oceandrift:572: 169 elements penetrated seafloor, lifting up
10:53:11 DEBUG opendrift.models.oceandrift:590: 3 elements reached seafloor, set to bottom
10:53:11 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:53:11 DEBUG opendrift.models.sedimentdrift:112: Settling 3 elements at seafloor
10:53:11 DEBUG opendrift.models.oceandrift:572: 169 elements penetrated seafloor, lifting up
10:53:11 DEBUG opendrift.models.oceandrift:590: 14 elements reached seafloor, set to bottom
10:53:11 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
10:53:11 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
10:53:11 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:11 DEBUG opendrift.models.basemodel:2945: 1493 active elements (0 deactivated)
10:53:11 DEBUG opendrift.models.basemodel:1658: to be seeded: 8507, already seeded 1493
10:53:11 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:11 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:11 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:11 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:11 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:11 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:11 DEBUG opendrift.models.basemodel:1253: Data needed for 1528 elements
10:53:11 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:11 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 18:00:00 (before)
2023-08-21 19:00:00 (after)
10:53:11 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 18:00:00) in space (linearNDFast)
10:53:11 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:11 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:11 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:11 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:11 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:11 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:11 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 13.8564 (max)
10:53:11 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:11 DEBUG opendrift.models.basemodel:1527: 1528 active elements
10:53:11 DEBUG opendrift.models.basemodel:1538: 59.12216578211489 <- latitude -> 59.18089568676097
10:53:11 DEBUG opendrift.models.basemodel:1543: 10.945429928321571 <- longitude -> 11.023549774245302
10:53:11 DEBUG opendrift.models.basemodel:1548: -13.683647874852849 <- z -> 0.0
10:53:11 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:11 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:53:11 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:11 INFO opendrift.models.basemodel:2882: 2023-08-21 18:02:19.552469 - step 44 of 216 - 1528 active elements (0 deactivated)
10:53:11 DEBUG opendrift.models.basemodel:2888: 8472 elements scheduled.
10:53:11 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:11 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:11 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:11 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:11 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:11 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:11 DEBUG opendrift.models.basemodel:1253: Data needed for 1528 elements
10:53:11 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:11 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:11 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:11 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:11 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:11 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:11 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:11 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:11 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:11 DEBUG opendrift.models.basemodel:1253: Data needed for 1528 elements
10:53:11 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:11 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 18:00:00 (before)
2023-08-21 19:00:00 (after)
10:53:12 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:12 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:12 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:12 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:12 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:12 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:12 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 22x19x5) for time after (2023-08-21 19:00:00)
10:53:12 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 18:00:00) in space (linearNDFast)
10:53:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:12 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 19:00:00) in space (linearNDFast)
10:53:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 464 elements, expanding data 1
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 464 elements, expanding data 1
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 517 elements, expanding data 1
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 517 elements, expanding data 1
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 517 elements, expanding data 1
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 517 elements, expanding data 1
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 517 elements, expanding data 1
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1034 elements, expanding data 1
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1034 elements, expanding data 1
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1034 elements, expanding data 1
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1034 elements, expanding data 1
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1034 elements, expanding data 1
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 464 elements, expanding data 1
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 464 elements, expanding data 1
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 464 elements, expanding data 1
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 464 elements, expanding data 1
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 464 elements, expanding data 1
10:53:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 2
10:53:12 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 18:00:00, weight 0.96) and
after (2023-08-21 19:00:00, weight 0.04) in time
10:53:12 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.054580622470525 and -58.97646076441642 degrees.
10:53:12 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.054580622470525 and -58.97646076441642 degrees.
10:53:12 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:12 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:12 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:12 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:12 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:12 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:12 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.6534 (min) 0.965273 (max)
10:53:12 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.899484 (min) 0.790351 (max)
10:53:12 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000384334 (min) 0.000309481 (max)
10:53:12 DEBUG opendrift.models.basemodel:1524: x_wind: 0.152137 (min) 14.8311 (max)
10:53:12 DEBUG opendrift.models.basemodel:1524: y_wind: -2.16264 (min) 9.95085 (max)
10:53:12 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:12 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:12 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:12 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:12 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:12 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:12 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:12 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 13.8564 (max)
10:53:12 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:12 DEBUG opendrift.models.basemodel:1527: 1528 active elements
10:53:12 DEBUG opendrift.models.basemodel:1538: 59.12216578211489 <- latitude -> 59.18089568676097
10:53:12 DEBUG opendrift.models.basemodel:1543: 10.945429928321571 <- longitude -> 11.023549774245302
10:53:12 DEBUG opendrift.models.basemodel:1548: -13.585527420043945 <- z -> 0.0
10:53:12 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:12 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:12 DEBUG opendrift.models.physics_methods:940: min: 2.303119, mean: 6.991600, max: 14.152638
10:53:12 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 2.303119, mean: 6.991600, max: 14.152638
10:53:12 DEBUG opendrift.models.basemodel:813: 111 elements hit coastline, moving back to water
10:53:12 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:53:12 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:12 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:12 DEBUG opendrift.models.physics_methods:741: Advecting 37 of 1528 elements above 0.100m with wind-sheared ocean current (0.026905 m/s - 0.226902 m/s)
10:53:12 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:12 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:12 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.24784734066398617
10:53:12 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:12 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:12 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:12 DEBUG opendrift.models.oceandrift:572: 222 elements penetrated seafloor, lifting up
10:53:12 DEBUG opendrift.models.oceandrift:590: 11 elements reached seafloor, set to bottom
10:53:12 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:53:12 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
10:53:12 DEBUG opendrift.models.oceandrift:572: 201 elements penetrated seafloor, lifting up
10:53:12 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:12 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:12 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:12 DEBUG opendrift.models.oceandrift:572: 185 elements penetrated seafloor, lifting up
10:53:12 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:53:12 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:53:12 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:53:12 DEBUG opendrift.models.oceandrift:572: 188 elements penetrated seafloor, lifting up
10:53:12 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:53:12 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:53:12 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:53:12 DEBUG opendrift.models.oceandrift:572: 174 elements penetrated seafloor, lifting up
10:53:12 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:12 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:12 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:12 DEBUG opendrift.models.oceandrift:572: 194 elements penetrated seafloor, lifting up
10:53:12 DEBUG opendrift.models.oceandrift:590: 5 elements reached seafloor, set to bottom
10:53:12 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:53:12 DEBUG opendrift.models.sedimentdrift:112: Settling 5 elements at seafloor
10:53:12 DEBUG opendrift.models.oceandrift:572: 185 elements penetrated seafloor, lifting up
10:53:12 DEBUG opendrift.models.oceandrift:590: 13 elements reached seafloor, set to bottom
10:53:12 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
10:53:12 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
10:53:12 DEBUG opendrift.models.oceandrift:572: 198 elements penetrated seafloor, lifting up
10:53:12 DEBUG opendrift.models.oceandrift:590: 11 elements reached seafloor, set to bottom
10:53:12 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:53:12 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
10:53:12 DEBUG opendrift.models.oceandrift:572: 173 elements penetrated seafloor, lifting up
10:53:12 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:12 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:12 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:12 DEBUG opendrift.models.oceandrift:572: 186 elements penetrated seafloor, lifting up
10:53:12 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:12 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:12 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:12 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:12 DEBUG opendrift.models.basemodel:2945: 1528 active elements (0 deactivated)
10:53:12 DEBUG opendrift.models.basemodel:1658: to be seeded: 8472, already seeded 1528
10:53:12 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:12 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:12 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:12 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:12 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:12 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:12 DEBUG opendrift.models.basemodel:1253: Data needed for 1563 elements
10:53:12 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:12 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 18:00:00 (before)
2023-08-21 19:00:00 (after)
10:53:12 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 18:00:00) in space (linearNDFast)
10:53:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:12 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:12 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:12 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:12 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:12 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:12 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 13.9023 (max)
10:53:12 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:12 DEBUG opendrift.models.basemodel:1527: 1563 active elements
10:53:12 DEBUG opendrift.models.basemodel:1538: 59.123071138631175 <- latitude -> 59.18054327353529
10:53:12 DEBUG opendrift.models.basemodel:1543: 10.943257541548096 <- longitude -> 11.023692326862015
10:53:12 DEBUG opendrift.models.basemodel:1548: -13.661031723022461 <- z -> 0.0
10:53:12 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:12 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:53:12 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:12 INFO opendrift.models.basemodel:2882: 2023-08-21 18:12:19.552469 - step 45 of 216 - 1563 active elements (0 deactivated)
10:53:12 DEBUG opendrift.models.basemodel:2888: 8437 elements scheduled.
10:53:12 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:12 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:12 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:12 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:12 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:12 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:12 DEBUG opendrift.models.basemodel:1253: Data needed for 1563 elements
10:53:12 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:12 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:12 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:12 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:12 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:12 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:12 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:12 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:12 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:12 DEBUG opendrift.models.basemodel:1253: Data needed for 1563 elements
10:53:12 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:12 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 18:00:00 (before)
2023-08-21 19:00:00 (after)
10:53:13 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:13 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:13 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:13 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:13 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:13 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:13 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 22x19x5) for time after (2023-08-21 19:00:00)
10:53:13 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 18:00:00) in space (linearNDFast)
10:53:13 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:13 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 19:00:00) in space (linearNDFast)
10:53:13 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 491 elements, expanding data 1
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 491 elements, expanding data 1
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 538 elements, expanding data 1
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 2
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 538 elements, expanding data 1
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 2
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 538 elements, expanding data 1
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 2
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 538 elements, expanding data 1
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 2
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 538 elements, expanding data 1
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 2
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1080 elements, expanding data 1
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 2
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1080 elements, expanding data 1
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 2
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1080 elements, expanding data 1
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 2
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1080 elements, expanding data 1
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 2
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1080 elements, expanding data 1
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 132 elements, expanding data 2
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 491 elements, expanding data 1
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 491 elements, expanding data 1
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 491 elements, expanding data 1
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 491 elements, expanding data 1
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 491 elements, expanding data 1
10:53:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:13 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 18:00:00, weight 0.79) and
after (2023-08-21 19:00:00, weight 0.21) in time
10:53:13 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05675301908638 and -58.976318227864624 degrees.
10:53:13 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05675301908638 and -58.976318227864624 degrees.
10:53:13 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:13 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:13 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:13 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:13 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:13 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:13 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.631728 (min) 1.09173 (max)
10:53:13 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.03706 (min) 0.659478 (max)
10:53:13 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000342278 (min) 0.000278522 (max)
10:53:13 DEBUG opendrift.models.basemodel:1524: x_wind: 0.988003 (min) 13.6714 (max)
10:53:13 DEBUG opendrift.models.basemodel:1524: y_wind: -2.95408 (min) 10.2099 (max)
10:53:13 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:13 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:13 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:13 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:13 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:13 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:13 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:13 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 13.9023 (max)
10:53:13 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:13 DEBUG opendrift.models.basemodel:1527: 1563 active elements
10:53:13 DEBUG opendrift.models.basemodel:1538: 59.123071138631175 <- latitude -> 59.18054327353529
10:53:13 DEBUG opendrift.models.basemodel:1543: 10.943257541548096 <- longitude -> 11.023692326862015
10:53:13 DEBUG opendrift.models.basemodel:1548: -13.643054008483887 <- z -> 0.0
10:53:13 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:13 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:13 DEBUG opendrift.models.physics_methods:940: min: 1.273413, mean: 6.966076, max: 12.087718
10:53:13 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 1.273413, mean: 6.966076, max: 12.087718
10:53:13 DEBUG opendrift.models.basemodel:813: 117 elements hit coastline, moving back to water
10:53:13 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:53:13 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:13 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:13 DEBUG opendrift.models.physics_methods:741: Advecting 37 of 1563 elements above 0.100m with wind-sheared ocean current (0.045670 m/s - 0.244545 m/s)
10:53:13 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:13 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:13 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.18080101017482755
10:53:13 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:13 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:13 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:13 DEBUG opendrift.models.oceandrift:572: 216 elements penetrated seafloor, lifting up
10:53:13 DEBUG opendrift.models.oceandrift:590: 13 elements reached seafloor, set to bottom
10:53:13 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
10:53:13 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
10:53:13 DEBUG opendrift.models.oceandrift:572: 191 elements penetrated seafloor, lifting up
10:53:13 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:13 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:13 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:13 DEBUG opendrift.models.oceandrift:572: 189 elements penetrated seafloor, lifting up
10:53:13 DEBUG opendrift.models.oceandrift:590: 13 elements reached seafloor, set to bottom
10:53:13 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
10:53:13 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
10:53:13 DEBUG opendrift.models.oceandrift:572: 172 elements penetrated seafloor, lifting up
10:53:13 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:53:13 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:53:13 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:53:13 DEBUG opendrift.models.oceandrift:572: 198 elements penetrated seafloor, lifting up
10:53:13 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:53:13 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:53:13 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:53:13 DEBUG opendrift.models.oceandrift:572: 191 elements penetrated seafloor, lifting up
10:53:13 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:13 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:13 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:13 DEBUG opendrift.models.oceandrift:572: 187 elements penetrated seafloor, lifting up
10:53:13 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:53:13 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:53:13 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:53:13 DEBUG opendrift.models.oceandrift:572: 182 elements penetrated seafloor, lifting up
10:53:13 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:13 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:13 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:13 DEBUG opendrift.models.oceandrift:572: 193 elements penetrated seafloor, lifting up
10:53:13 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:53:13 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:53:13 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:53:13 DEBUG opendrift.models.oceandrift:572: 183 elements penetrated seafloor, lifting up
10:53:13 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:53:13 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:53:13 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:53:13 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:13 DEBUG opendrift.models.basemodel:2945: 1563 active elements (0 deactivated)
10:53:13 DEBUG opendrift.models.basemodel:1658: to be seeded: 8437, already seeded 1563
10:53:13 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:13 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:13 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:13 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:13 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:13 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:13 DEBUG opendrift.models.basemodel:1253: Data needed for 1598 elements
10:53:13 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:13 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 18:00:00 (before)
2023-08-21 19:00:00 (after)
10:53:13 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 18:00:00) in space (linearNDFast)
10:53:13 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:13 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:13 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:13 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:13 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:13 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:13 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.06861 (min) 13.9201 (max)
10:53:13 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:13 DEBUG opendrift.models.basemodel:1527: 1598 active elements
10:53:13 DEBUG opendrift.models.basemodel:1538: 59.123577035298396 <- latitude -> 59.18165323897264
10:53:13 DEBUG opendrift.models.basemodel:1543: 10.944369218806239 <- longitude -> 11.02251496448118
10:53:13 DEBUG opendrift.models.basemodel:1548: -13.633054008483887 <- z -> 0.0
10:53:13 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:13 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:53:13 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:13 INFO opendrift.models.basemodel:2882: 2023-08-21 18:22:19.552469 - step 46 of 216 - 1598 active elements (0 deactivated)
10:53:13 DEBUG opendrift.models.basemodel:2888: 8402 elements scheduled.
10:53:13 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:13 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:13 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:13 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:13 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:13 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:13 DEBUG opendrift.models.basemodel:1253: Data needed for 1598 elements
10:53:13 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:13 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:13 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:13 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:13 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:13 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:13 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:13 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:13 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:13 DEBUG opendrift.models.basemodel:1253: Data needed for 1598 elements
10:53:13 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:13 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 18:00:00 (before)
2023-08-21 19:00:00 (after)
10:53:14 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:14 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:14 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:14 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:14 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:14 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:14 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 22x19x5) for time after (2023-08-21 19:00:00)
10:53:14 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 18:00:00) in space (linearNDFast)
10:53:14 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:14 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 19:00:00) in space (linearNDFast)
10:53:14 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 504 elements, expanding data 1
10:53:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 504 elements, expanding data 1
10:53:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 560 elements, expanding data 1
10:53:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 30 elements, expanding data 2
10:53:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 560 elements, expanding data 1
10:53:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 30 elements, expanding data 2
10:53:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 560 elements, expanding data 1
10:53:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 30 elements, expanding data 2
10:53:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 560 elements, expanding data 1
10:53:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 30 elements, expanding data 2
10:53:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 560 elements, expanding data 1
10:53:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 30 elements, expanding data 2
10:53:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1110 elements, expanding data 1
10:53:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 2
10:53:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1110 elements, expanding data 1
10:53:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 2
10:53:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1110 elements, expanding data 1
10:53:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 2
10:53:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1110 elements, expanding data 1
10:53:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 2
10:53:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1110 elements, expanding data 1
10:53:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 2
10:53:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 504 elements, expanding data 1
10:53:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 504 elements, expanding data 1
10:53:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 504 elements, expanding data 1
10:53:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 504 elements, expanding data 1
10:53:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 504 elements, expanding data 1
10:53:14 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 18:00:00, weight 0.63) and
after (2023-08-21 19:00:00, weight 0.37) in time
10:53:14 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05564134489939 and -58.97749557850568 degrees.
10:53:14 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05564134489939 and -58.97749557850568 degrees.
10:53:14 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:14 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:14 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:14 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:14 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:14 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:14 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.662262 (min) 1.09442 (max)
10:53:14 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.925755 (min) 0.803062 (max)
10:53:14 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000351986 (min) 0.000272307 (max)
10:53:14 DEBUG opendrift.models.basemodel:1524: x_wind: 0.180784 (min) 13.9874 (max)
10:53:14 DEBUG opendrift.models.basemodel:1524: y_wind: -3.5791 (min) 10.448 (max)
10:53:14 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:14 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:14 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:14 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:14 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:14 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:14 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:14 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.06861 (min) 13.9201 (max)
10:53:14 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:14 DEBUG opendrift.models.basemodel:1527: 1598 active elements
10:53:14 DEBUG opendrift.models.basemodel:1538: 59.123577035298396 <- latitude -> 59.18165323897264
10:53:14 DEBUG opendrift.models.basemodel:1543: 10.944369218806239 <- longitude -> 11.02251496448118
10:53:14 DEBUG opendrift.models.basemodel:1548: -13.633054008483887 <- z -> 0.0
10:53:14 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:14 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:14 DEBUG opendrift.models.physics_methods:940: min: 1.914814, mean: 6.824107, max: 12.421470
10:53:14 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 1.914814, mean: 6.824107, max: 12.421470
10:53:14 DEBUG opendrift.models.basemodel:813: 114 elements hit coastline, moving back to water
10:53:14 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:53:14 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:14 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:14 DEBUG opendrift.models.physics_methods:741: Advecting 40 of 1598 elements above 0.100m with wind-sheared ocean current (0.014850 m/s - 0.231693 m/s)
10:53:14 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:14 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:14 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.1909227293654251
10:53:14 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:14 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:14 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:14 DEBUG opendrift.models.oceandrift:572: 229 elements penetrated seafloor, lifting up
10:53:14 DEBUG opendrift.models.oceandrift:590: 11 elements reached seafloor, set to bottom
10:53:14 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:53:14 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
10:53:14 DEBUG opendrift.models.oceandrift:572: 214 elements penetrated seafloor, lifting up
10:53:14 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:14 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:14 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:14 DEBUG opendrift.models.oceandrift:572: 190 elements penetrated seafloor, lifting up
10:53:14 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:14 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:14 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:14 DEBUG opendrift.models.oceandrift:572: 204 elements penetrated seafloor, lifting up
10:53:14 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:53:14 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:53:14 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:53:14 DEBUG opendrift.models.oceandrift:572: 200 elements penetrated seafloor, lifting up
10:53:14 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:14 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:14 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:14 DEBUG opendrift.models.oceandrift:572: 193 elements penetrated seafloor, lifting up
10:53:14 DEBUG opendrift.models.oceandrift:590: 14 elements reached seafloor, set to bottom
10:53:14 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
10:53:14 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
10:53:14 DEBUG opendrift.models.oceandrift:572: 185 elements penetrated seafloor, lifting up
10:53:14 DEBUG opendrift.models.oceandrift:590: 14 elements reached seafloor, set to bottom
10:53:14 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
10:53:14 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
10:53:14 DEBUG opendrift.models.oceandrift:572: 171 elements penetrated seafloor, lifting up
10:53:14 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:14 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:14 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:14 DEBUG opendrift.models.oceandrift:572: 190 elements penetrated seafloor, lifting up
10:53:14 DEBUG opendrift.models.oceandrift:590: 11 elements reached seafloor, set to bottom
10:53:14 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:53:14 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
10:53:14 DEBUG opendrift.models.oceandrift:572: 194 elements penetrated seafloor, lifting up
10:53:14 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:53:14 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:53:14 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:53:14 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:14 DEBUG opendrift.models.basemodel:2945: 1598 active elements (0 deactivated)
10:53:14 DEBUG opendrift.models.basemodel:1658: to be seeded: 8402, already seeded 1598
10:53:14 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:53:14 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:14 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:14 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:14 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:14 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:14 DEBUG opendrift.models.basemodel:1253: Data needed for 1632 elements
10:53:14 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:14 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 18:00:00 (before)
2023-08-21 19:00:00 (after)
10:53:14 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 18:00:00) in space (linearNDFast)
10:53:14 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:14 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:14 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:14 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:14 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:14 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:14 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.1518 (max)
10:53:14 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:14 DEBUG opendrift.models.basemodel:1527: 1632 active elements
10:53:14 DEBUG opendrift.models.basemodel:1538: 59.12197443445976 <- latitude -> 59.181999090039554
10:53:14 DEBUG opendrift.models.basemodel:1543: 10.944593966373645 <- longitude -> 11.02245526101227
10:53:14 DEBUG opendrift.models.basemodel:1548: -13.184628883568054 <- z -> 0.0
10:53:14 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:14 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:53:14 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:14 INFO opendrift.models.basemodel:2882: 2023-08-21 18:32:19.552469 - step 47 of 216 - 1632 active elements (0 deactivated)
10:53:14 DEBUG opendrift.models.basemodel:2888: 8368 elements scheduled.
10:53:14 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:14 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:14 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:14 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:14 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:14 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:14 DEBUG opendrift.models.basemodel:1253: Data needed for 1632 elements
10:53:14 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:14 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:14 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:14 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:14 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:14 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:14 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:14 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:14 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:14 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:14 DEBUG opendrift.models.basemodel:1253: Data needed for 1632 elements
10:53:14 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:14 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 18:00:00 (before)
2023-08-21 19:00:00 (after)
10:53:15 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:15 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:15 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:15 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:15 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:15 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:15 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 22x19x5) for time after (2023-08-21 19:00:00)
10:53:15 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 18:00:00) in space (linearNDFast)
10:53:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:15 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 19:00:00) in space (linearNDFast)
10:53:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 532 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 532 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 588 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 588 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 588 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 588 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 588 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 41 elements, expanding data 2
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1130 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 143 elements, expanding data 2
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1130 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 143 elements, expanding data 2
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1130 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 143 elements, expanding data 2
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1130 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 143 elements, expanding data 2
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1130 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 143 elements, expanding data 2
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 532 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 532 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 532 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 532 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 532 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:15 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 18:00:00, weight 0.46) and
after (2023-08-21 19:00:00, weight 0.54) in time
10:53:15 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.055416600580116 and -58.977555293036026 degrees.
10:53:15 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.055416600580116 and -58.977555293036026 degrees.
10:53:15 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:15 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:15 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:15 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:15 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:15 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:15 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.626102 (min) 1.08376 (max)
10:53:15 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.849333 (min) 0.784104 (max)
10:53:15 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000292963 (min) 0.000279968 (max)
10:53:15 DEBUG opendrift.models.basemodel:1524: x_wind: -0.287003 (min) 14.5574 (max)
10:53:15 DEBUG opendrift.models.basemodel:1524: y_wind: -3.63992 (min) 10.8953 (max)
10:53:15 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:15 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:15 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:15 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:15 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:15 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:15 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:15 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.1518 (max)
10:53:15 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:15 DEBUG opendrift.models.basemodel:1527: 1632 active elements
10:53:15 DEBUG opendrift.models.basemodel:1538: 59.12197443445976 <- latitude -> 59.181999090039554
10:53:15 DEBUG opendrift.models.basemodel:1543: 10.944593966373645 <- longitude -> 11.02245526101227
10:53:15 DEBUG opendrift.models.basemodel:1548: -13.129901885986328 <- z -> 0.0
10:53:15 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:15 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:15 DEBUG opendrift.models.physics_methods:940: min: 0.706220, mean: 6.737964, max: 13.320582
10:53:15 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.706220, mean: 6.737964, max: 13.320582
10:53:15 DEBUG opendrift.models.basemodel:813: 117 elements hit coastline, moving back to water
10:53:15 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:53:15 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:15 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:15 DEBUG opendrift.models.physics_methods:741: Advecting 40 of 1632 elements above 0.100m with wind-sheared ocean current (0.011605 m/s - 0.210459 m/s)
10:53:15 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:15 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:15 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.2195618447438049
10:53:15 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:15 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:15 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:15 DEBUG opendrift.models.oceandrift:572: 258 elements penetrated seafloor, lifting up
10:53:15 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:15 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:15 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:15 DEBUG opendrift.models.oceandrift:572: 211 elements penetrated seafloor, lifting up
10:53:15 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:53:15 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:53:15 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:53:15 DEBUG opendrift.models.oceandrift:572: 193 elements penetrated seafloor, lifting up
10:53:15 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:53:15 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:53:15 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:53:15 DEBUG opendrift.models.oceandrift:572: 196 elements penetrated seafloor, lifting up
10:53:15 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:15 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:15 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:15 DEBUG opendrift.models.oceandrift:572: 203 elements penetrated seafloor, lifting up
10:53:15 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:53:15 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:53:15 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:53:15 DEBUG opendrift.models.oceandrift:572: 195 elements penetrated seafloor, lifting up
10:53:15 DEBUG opendrift.models.oceandrift:590: 17 elements reached seafloor, set to bottom
10:53:15 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
10:53:15 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
10:53:15 DEBUG opendrift.models.oceandrift:572: 185 elements penetrated seafloor, lifting up
10:53:15 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:15 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:15 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:15 DEBUG opendrift.models.oceandrift:572: 199 elements penetrated seafloor, lifting up
10:53:15 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:53:15 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:53:15 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:53:15 DEBUG opendrift.models.oceandrift:572: 196 elements penetrated seafloor, lifting up
10:53:15 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:53:15 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:53:15 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:53:15 DEBUG opendrift.models.oceandrift:572: 204 elements penetrated seafloor, lifting up
10:53:15 DEBUG opendrift.models.oceandrift:590: 15 elements reached seafloor, set to bottom
10:53:15 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
10:53:15 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
10:53:15 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:15 DEBUG opendrift.models.basemodel:2945: 1632 active elements (0 deactivated)
10:53:15 DEBUG opendrift.models.basemodel:1658: to be seeded: 8368, already seeded 1632
10:53:15 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:15 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:15 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:15 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:15 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:15 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:15 DEBUG opendrift.models.basemodel:1253: Data needed for 1667 elements
10:53:15 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:15 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 18:00:00 (before)
2023-08-21 19:00:00 (after)
10:53:15 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 18:00:00) in space (linearNDFast)
10:53:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:15 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:15 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:15 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:15 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:15 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:15 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.1394 (max)
10:53:15 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:15 DEBUG opendrift.models.basemodel:1527: 1667 active elements
10:53:15 DEBUG opendrift.models.basemodel:1538: 59.12185249443306 <- latitude -> 59.18224589469546
10:53:15 DEBUG opendrift.models.basemodel:1543: 10.94155690532709 <- longitude -> 11.023909372451936
10:53:15 DEBUG opendrift.models.basemodel:1548: -13.769590606689453 <- z -> 0.0
10:53:15 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:15 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:53:15 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:15 INFO opendrift.models.basemodel:2882: 2023-08-21 18:42:19.552469 - step 48 of 216 - 1667 active elements (0 deactivated)
10:53:15 DEBUG opendrift.models.basemodel:2888: 8333 elements scheduled.
10:53:15 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:15 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:15 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:15 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:15 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:15 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:15 DEBUG opendrift.models.basemodel:1253: Data needed for 1667 elements
10:53:15 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:15 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:15 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:15 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:15 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:15 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:15 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:15 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:15 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:15 DEBUG opendrift.models.basemodel:1253: Data needed for 1667 elements
10:53:15 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:15 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 18:00:00 (before)
2023-08-21 19:00:00 (after)
10:53:15 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:15 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:15 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:15 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:15 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:15 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:15 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 22x20x5) for time after (2023-08-21 19:00:00)
10:53:15 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 18:00:00) in space (linearNDFast)
10:53:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:15 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 19:00:00) in space (linearNDFast)
10:53:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 550 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 550 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 605 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 605 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 605 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 605 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 605 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1166 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 151 elements, expanding data 2
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1166 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 151 elements, expanding data 2
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1166 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 151 elements, expanding data 2
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1166 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 151 elements, expanding data 2
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1166 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 151 elements, expanding data 2
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 550 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 550 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 550 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 550 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 550 elements, expanding data 1
10:53:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:15 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 18:00:00, weight 0.29) and
after (2023-08-21 19:00:00, weight 0.71) in time
10:53:15 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05845365286432 and -58.976101178199976 degrees.
10:53:15 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05845365286432 and -58.976101178199976 degrees.
10:53:15 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:15 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:15 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:15 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:15 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:15 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:15 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.662859 (min) 1.18337 (max)
10:53:15 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.841531 (min) 0.739068 (max)
10:53:15 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000311421 (min) 0.00030587 (max)
10:53:15 DEBUG opendrift.models.basemodel:1524: x_wind: -0.467092 (min) 13.8185 (max)
10:53:15 DEBUG opendrift.models.basemodel:1524: y_wind: -3.95803 (min) 9.45897 (max)
10:53:15 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:15 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:15 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:15 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:15 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:15 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:15 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:15 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.1394 (max)
10:53:15 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:15 DEBUG opendrift.models.basemodel:1527: 1667 active elements
10:53:15 DEBUG opendrift.models.basemodel:1538: 59.12185249443306 <- latitude -> 59.18224589469546
10:53:15 DEBUG opendrift.models.basemodel:1543: 10.94155690532709 <- longitude -> 11.023909372451936
10:53:15 DEBUG opendrift.models.basemodel:1548: -13.7394380569458 <- z -> 0.0
10:53:15 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:15 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:15 DEBUG opendrift.models.physics_methods:940: min: 1.392069, mean: 6.644638, max: 13.117211
10:53:15 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 1.392069, mean: 6.644638, max: 13.117211
10:53:15 DEBUG opendrift.models.basemodel:813: 138 elements hit coastline, moving back to water
10:53:15 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
10:53:15 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:15 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:15 DEBUG opendrift.models.physics_methods:741: Advecting 40 of 1667 elements above 0.100m with wind-sheared ocean current (0.008243 m/s - 0.212488 m/s)
10:53:15 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:15 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:15 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.21290885895641323
10:53:15 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:15 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:15 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:15 DEBUG opendrift.models.oceandrift:572: 237 elements penetrated seafloor, lifting up
10:53:15 DEBUG opendrift.models.oceandrift:590: 17 elements reached seafloor, set to bottom
10:53:15 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
10:53:15 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
10:53:15 DEBUG opendrift.models.oceandrift:572: 208 elements penetrated seafloor, lifting up
10:53:15 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:15 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:15 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:15 DEBUG opendrift.models.oceandrift:572: 194 elements penetrated seafloor, lifting up
10:53:15 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:53:15 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:53:15 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:53:15 DEBUG opendrift.models.oceandrift:572: 203 elements penetrated seafloor, lifting up
10:53:15 DEBUG opendrift.models.oceandrift:590: 14 elements reached seafloor, set to bottom
10:53:15 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
10:53:15 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
10:53:15 DEBUG opendrift.models.oceandrift:572: 203 elements penetrated seafloor, lifting up
10:53:15 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:15 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:15 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:15 DEBUG opendrift.models.oceandrift:572: 193 elements penetrated seafloor, lifting up
10:53:15 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:15 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:15 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:15 DEBUG opendrift.models.oceandrift:572: 199 elements penetrated seafloor, lifting up
10:53:15 DEBUG opendrift.models.oceandrift:590: 13 elements reached seafloor, set to bottom
10:53:15 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
10:53:15 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
10:53:15 DEBUG opendrift.models.oceandrift:572: 171 elements penetrated seafloor, lifting up
10:53:15 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:53:15 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:53:15 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:53:15 DEBUG opendrift.models.oceandrift:572: 194 elements penetrated seafloor, lifting up
10:53:15 DEBUG opendrift.models.oceandrift:590: 15 elements reached seafloor, set to bottom
10:53:15 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
10:53:15 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
10:53:15 DEBUG opendrift.models.oceandrift:572: 166 elements penetrated seafloor, lifting up
10:53:15 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:53:15 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:53:15 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:53:15 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:15 DEBUG opendrift.models.basemodel:2945: 1667 active elements (0 deactivated)
10:53:15 DEBUG opendrift.models.basemodel:1658: to be seeded: 8333, already seeded 1667
10:53:15 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:15 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:15 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:15 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:15 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:15 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:15 DEBUG opendrift.models.basemodel:1253: Data needed for 1702 elements
10:53:15 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:15 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 18:00:00 (before)
2023-08-21 19:00:00 (after)
10:53:15 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 18:00:00) in space (linearNDFast)
10:53:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:15 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:15 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:15 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:15 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:15 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:15 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.0343 (max)
10:53:15 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:15 DEBUG opendrift.models.basemodel:1527: 1702 active elements
10:53:15 DEBUG opendrift.models.basemodel:1538: 59.1211655122265 <- latitude -> 59.18245332492178
10:53:15 DEBUG opendrift.models.basemodel:1543: 10.944788159735886 <- longitude -> 11.023669849025886
10:53:15 DEBUG opendrift.models.basemodel:1548: -13.690555801391602 <- z -> 0.0
10:53:15 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:15 DEBUG opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
10:53:15 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:15 INFO opendrift.models.basemodel:2882: 2023-08-21 18:52:19.552469 - step 49 of 216 - 1702 active elements (0 deactivated)
10:53:15 DEBUG opendrift.models.basemodel:2888: 8298 elements scheduled.
10:53:15 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:15 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:15 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:15 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:15 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:15 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:15 DEBUG opendrift.models.basemodel:1253: Data needed for 1702 elements
10:53:15 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:15 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:15 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:15 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:15 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:15 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:15 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:15 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:15 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:15 DEBUG opendrift.models.basemodel:1253: Data needed for 1702 elements
10:53:15 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:15 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 18:00:00 (before)
2023-08-21 19:00:00 (after)
10:53:17 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:17 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:17 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:17 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:17 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:17 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:17 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 22x19x5) for time after (2023-08-21 19:00:00)
10:53:17 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 18:00:00) in space (linearNDFast)
10:53:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:17 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 19:00:00) in space (linearNDFast)
10:53:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 569 elements, expanding data 1
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 569 elements, expanding data 1
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 622 elements, expanding data 1
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 622 elements, expanding data 1
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 622 elements, expanding data 1
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 622 elements, expanding data 1
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 622 elements, expanding data 1
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 52 elements, expanding data 2
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1184 elements, expanding data 1
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 168 elements, expanding data 2
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1184 elements, expanding data 1
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 168 elements, expanding data 2
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1184 elements, expanding data 1
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 168 elements, expanding data 2
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1184 elements, expanding data 1
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 168 elements, expanding data 2
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1184 elements, expanding data 1
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 168 elements, expanding data 2
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 569 elements, expanding data 1
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 569 elements, expanding data 1
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 569 elements, expanding data 1
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 569 elements, expanding data 1
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 569 elements, expanding data 1
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:17 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 18:00:00, weight 0.13) and
after (2023-08-21 19:00:00, weight 0.87) in time
10:53:17 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05522239969195 and -58.9763406974324 degrees.
10:53:17 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05522239969195 and -58.9763406974324 degrees.
10:53:17 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:17 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:17 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:17 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:17 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:17 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:17 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.701295 (min) 0.999533 (max)
10:53:17 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.910172 (min) 0.703427 (max)
10:53:17 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000277202 (min) 0.000317341 (max)
10:53:17 DEBUG opendrift.models.basemodel:1524: x_wind: -0.00349727 (min) 13.5744 (max)
10:53:17 DEBUG opendrift.models.basemodel:1524: y_wind: -4.03147 (min) 10.4249 (max)
10:53:17 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:17 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:17 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:17 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:17 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:17 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:17 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:17 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.0343 (max)
10:53:17 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:17 DEBUG opendrift.models.basemodel:1527: 1702 active elements
10:53:17 DEBUG opendrift.models.basemodel:1538: 59.1211655122265 <- latitude -> 59.18245332492178
10:53:17 DEBUG opendrift.models.basemodel:1543: 10.944788159735886 <- longitude -> 11.023669849025886
10:53:17 DEBUG opendrift.models.basemodel:1548: -13.690555801391602 <- z -> 0.0
10:53:17 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:17 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:17 DEBUG opendrift.models.physics_methods:940: min: 1.200681, mean: 6.484553, max: 12.592844
10:53:17 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 1.200681, mean: 6.484553, max: 12.592844
10:53:17 DEBUG opendrift.models.basemodel:813: 131 elements hit coastline, moving back to water
10:53:17 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:53:17 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:17 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:17 DEBUG opendrift.models.physics_methods:741: Advecting 40 of 1702 elements above 0.100m with wind-sheared ocean current (0.033783 m/s - 0.221802 m/s)
10:53:17 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:17 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:17 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.196227127170639
10:53:17 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:17 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:17 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:17 DEBUG opendrift.models.oceandrift:572: 227 elements penetrated seafloor, lifting up
10:53:17 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:17 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:17 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:17 DEBUG opendrift.models.oceandrift:572: 183 elements penetrated seafloor, lifting up
10:53:17 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:17 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:17 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:17 DEBUG opendrift.models.oceandrift:572: 195 elements penetrated seafloor, lifting up
10:53:17 DEBUG opendrift.models.oceandrift:590: 4 elements reached seafloor, set to bottom
10:53:17 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:53:17 DEBUG opendrift.models.sedimentdrift:112: Settling 4 elements at seafloor
10:53:17 DEBUG opendrift.models.oceandrift:572: 186 elements penetrated seafloor, lifting up
10:53:17 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:53:17 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:53:17 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:53:17 DEBUG opendrift.models.oceandrift:572: 165 elements penetrated seafloor, lifting up
10:53:17 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:53:17 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:53:17 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:53:17 DEBUG opendrift.models.oceandrift:572: 169 elements penetrated seafloor, lifting up
10:53:17 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:53:17 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:53:17 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:53:17 DEBUG opendrift.models.oceandrift:572: 166 elements penetrated seafloor, lifting up
10:53:17 DEBUG opendrift.models.oceandrift:590: 17 elements reached seafloor, set to bottom
10:53:17 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
10:53:17 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
10:53:17 DEBUG opendrift.models.oceandrift:572: 177 elements penetrated seafloor, lifting up
10:53:17 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:53:17 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:53:17 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:53:17 DEBUG opendrift.models.oceandrift:572: 194 elements penetrated seafloor, lifting up
10:53:17 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:53:17 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:53:17 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:53:17 DEBUG opendrift.models.oceandrift:572: 175 elements penetrated seafloor, lifting up
10:53:17 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:17 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:17 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:17 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:17 DEBUG opendrift.models.basemodel:2945: 1702 active elements (0 deactivated)
10:53:17 DEBUG opendrift.models.basemodel:1658: to be seeded: 8298, already seeded 1702
10:53:17 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:53:17 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:17 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:17 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:17 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:17 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:17 DEBUG opendrift.models.basemodel:1253: Data needed for 1736 elements
10:53:17 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:17 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 19:00:00 (before)
2023-08-21 20:00:00 (after)
10:53:17 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 19:00:00) in space (linearNDFast)
10:53:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:17 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:17 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:17 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:17 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:17 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:17 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.1082 (max)
10:53:17 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:17 DEBUG opendrift.models.basemodel:1527: 1736 active elements
10:53:17 DEBUG opendrift.models.basemodel:1538: 59.12121253642691 <- latitude -> 59.181978183114296
10:53:17 DEBUG opendrift.models.basemodel:1543: 10.944594768602448 <- longitude -> 11.02168940406123
10:53:17 DEBUG opendrift.models.basemodel:1548: -13.715383758544922 <- z -> 0.0
10:53:17 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:17 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
10:53:17 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:17 INFO opendrift.models.basemodel:2882: 2023-08-21 19:02:19.552469 - step 50 of 216 - 1736 active elements (0 deactivated)
10:53:17 DEBUG opendrift.models.basemodel:2888: 8264 elements scheduled.
10:53:17 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:17 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:17 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:17 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:17 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:17 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:17 DEBUG opendrift.models.basemodel:1253: Data needed for 1736 elements
10:53:17 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:17 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:17 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:17 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:17 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:17 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:17 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:17 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:17 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:17 DEBUG opendrift.models.basemodel:1253: Data needed for 1736 elements
10:53:17 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:17 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 19:00:00 (before)
2023-08-21 20:00:00 (after)
10:53:17 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:17 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:17 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:17 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:17 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:17 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:17 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 22x19x5) for time after (2023-08-21 20:00:00)
10:53:17 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 19:00:00) in space (linearNDFast)
10:53:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:17 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 20:00:00) in space (linearNDFast)
10:53:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 579 elements, expanding data 1
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 579 elements, expanding data 1
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 634 elements, expanding data 1
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 634 elements, expanding data 1
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 634 elements, expanding data 1
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 634 elements, expanding data 1
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 634 elements, expanding data 1
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1195 elements, expanding data 1
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 168 elements, expanding data 2
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1195 elements, expanding data 1
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 168 elements, expanding data 2
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1195 elements, expanding data 1
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 168 elements, expanding data 2
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1195 elements, expanding data 1
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 168 elements, expanding data 2
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1195 elements, expanding data 1
10:53:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 168 elements, expanding data 2
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 579 elements, expanding data 1
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 579 elements, expanding data 1
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 579 elements, expanding data 1
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 579 elements, expanding data 1
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 579 elements, expanding data 1
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:18 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 19:00:00, weight 0.96) and
after (2023-08-21 20:00:00, weight 0.04) in time
10:53:18 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.055415797221634 and -58.978321150678404 degrees.
10:53:18 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.055415797221634 and -58.978321150678404 degrees.
10:53:18 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:18 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:18 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:18 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:18 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:18 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:18 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.586651 (min) 0.981721 (max)
10:53:18 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.02685 (min) 0.829108 (max)
10:53:18 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000262576 (min) 0.000298105 (max)
10:53:18 DEBUG opendrift.models.basemodel:1524: x_wind: -2.12544 (min) 13.3478 (max)
10:53:18 DEBUG opendrift.models.basemodel:1524: y_wind: -3.81598 (min) 10.0153 (max)
10:53:18 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:18 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:18 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:18 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:18 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:18 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:18 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:18 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.1082 (max)
10:53:18 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:18 DEBUG opendrift.models.basemodel:1527: 1736 active elements
10:53:18 DEBUG opendrift.models.basemodel:1538: 59.12121253642691 <- latitude -> 59.181978183114296
10:53:18 DEBUG opendrift.models.basemodel:1543: 10.944594768602448 <- longitude -> 11.02168940406123
10:53:18 DEBUG opendrift.models.basemodel:1548: -13.613044013977051 <- z -> 0.0
10:53:18 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:18 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:18 DEBUG opendrift.models.physics_methods:940: min: 0.878971, mean: 6.445757, max: 12.503239
10:53:18 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.878971, mean: 6.445757, max: 12.503239
10:53:18 DEBUG opendrift.models.basemodel:813: 129 elements hit coastline, moving back to water
10:53:18 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
10:53:18 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:18 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:18 DEBUG opendrift.models.physics_methods:741: Advecting 39 of 1736 elements above 0.100m with wind-sheared ocean current (0.020698 m/s - 0.236976 m/s)
10:53:18 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:18 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:18 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.19344460513504025
10:53:18 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:18 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:18 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:18 DEBUG opendrift.models.oceandrift:572: 228 elements penetrated seafloor, lifting up
10:53:18 DEBUG opendrift.models.oceandrift:590: 13 elements reached seafloor, set to bottom
10:53:18 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
10:53:18 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
10:53:18 DEBUG opendrift.models.oceandrift:572: 211 elements penetrated seafloor, lifting up
10:53:18 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:53:18 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:53:18 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:53:18 DEBUG opendrift.models.oceandrift:572: 204 elements penetrated seafloor, lifting up
10:53:18 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:53:18 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:53:18 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:53:18 DEBUG opendrift.models.oceandrift:572: 226 elements penetrated seafloor, lifting up
10:53:18 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:53:18 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:53:18 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:53:18 DEBUG opendrift.models.oceandrift:572: 199 elements penetrated seafloor, lifting up
10:53:18 DEBUG opendrift.models.oceandrift:590: 16 elements reached seafloor, set to bottom
10:53:18 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
10:53:18 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
10:53:18 DEBUG opendrift.models.oceandrift:572: 183 elements penetrated seafloor, lifting up
10:53:18 DEBUG opendrift.models.oceandrift:590: 19 elements reached seafloor, set to bottom
10:53:18 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
10:53:18 DEBUG opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
10:53:18 DEBUG opendrift.models.oceandrift:572: 192 elements penetrated seafloor, lifting up
10:53:18 DEBUG opendrift.models.oceandrift:590: 20 elements reached seafloor, set to bottom
10:53:18 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
10:53:18 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
10:53:18 DEBUG opendrift.models.oceandrift:572: 166 elements penetrated seafloor, lifting up
10:53:18 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:18 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:18 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:18 DEBUG opendrift.models.oceandrift:572: 177 elements penetrated seafloor, lifting up
10:53:18 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:18 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:18 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:18 DEBUG opendrift.models.oceandrift:572: 187 elements penetrated seafloor, lifting up
10:53:18 DEBUG opendrift.models.oceandrift:590: 15 elements reached seafloor, set to bottom
10:53:18 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
10:53:18 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
10:53:18 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:18 DEBUG opendrift.models.basemodel:2945: 1736 active elements (0 deactivated)
10:53:18 DEBUG opendrift.models.basemodel:1658: to be seeded: 8264, already seeded 1736
10:53:18 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:18 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:18 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:18 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:18 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:18 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:18 DEBUG opendrift.models.basemodel:1253: Data needed for 1771 elements
10:53:18 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:18 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 19:00:00 (before)
2023-08-21 20:00:00 (after)
10:53:18 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 19:00:00) in space (linearNDFast)
10:53:18 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:18 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:18 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:18 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:18 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:18 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:18 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.0714 (max)
10:53:18 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:18 DEBUG opendrift.models.basemodel:1527: 1771 active elements
10:53:18 DEBUG opendrift.models.basemodel:1538: 59.1202853811776 <- latitude -> 59.18204944875924
10:53:18 DEBUG opendrift.models.basemodel:1543: 10.94364844465343 <- longitude -> 11.020951159945184
10:53:18 DEBUG opendrift.models.basemodel:1548: -13.542964935302734 <- z -> 0.0
10:53:18 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:18 DEBUG opendrift.models.basemodel:836: Lifting 86 elements to seafloor.
10:53:18 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:18 INFO opendrift.models.basemodel:2882: 2023-08-21 19:12:19.552469 - step 51 of 216 - 1771 active elements (0 deactivated)
10:53:18 DEBUG opendrift.models.basemodel:2888: 8229 elements scheduled.
10:53:18 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:18 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:18 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:18 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:18 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:18 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:18 DEBUG opendrift.models.basemodel:1253: Data needed for 1771 elements
10:53:18 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:18 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:18 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:18 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:18 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:18 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:18 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:18 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:18 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:18 DEBUG opendrift.models.basemodel:1253: Data needed for 1771 elements
10:53:18 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:18 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 19:00:00 (before)
2023-08-21 20:00:00 (after)
10:53:18 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:18 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:18 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:18 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:18 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:18 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:18 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 23x19x5) for time after (2023-08-21 20:00:00)
10:53:18 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 19:00:00) in space (linearNDFast)
10:53:18 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:18 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 20:00:00) in space (linearNDFast)
10:53:18 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 603 elements, expanding data 1
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 603 elements, expanding data 1
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 657 elements, expanding data 1
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 2
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 657 elements, expanding data 1
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 2
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 657 elements, expanding data 1
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 2
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 657 elements, expanding data 1
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 2
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 657 elements, expanding data 1
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 2
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1214 elements, expanding data 1
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 167 elements, expanding data 2
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1214 elements, expanding data 1
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 167 elements, expanding data 2
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1214 elements, expanding data 1
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 167 elements, expanding data 2
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1214 elements, expanding data 1
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 167 elements, expanding data 2
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1214 elements, expanding data 1
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 167 elements, expanding data 2
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 603 elements, expanding data 1
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 603 elements, expanding data 1
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 603 elements, expanding data 1
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 603 elements, expanding data 1
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 603 elements, expanding data 1
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:18 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 19:00:00, weight 0.79) and
after (2023-08-21 20:00:00, weight 0.21) in time
10:53:18 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05636211507632 and -58.97905938452624 degrees.
10:53:18 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05636211507632 and -58.97905938452624 degrees.
10:53:18 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:18 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:18 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:18 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:18 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:18 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:18 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.722723 (min) 1.00966 (max)
10:53:18 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.811089 (min) 0.769543 (max)
10:53:18 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000277688 (min) 0.000312281 (max)
10:53:18 DEBUG opendrift.models.basemodel:1524: x_wind: 0.213083 (min) 13.5865 (max)
10:53:18 DEBUG opendrift.models.basemodel:1524: y_wind: -4.02778 (min) 9.58536 (max)
10:53:18 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:18 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:18 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:18 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:18 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:18 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:18 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:18 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.0714 (max)
10:53:18 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:18 DEBUG opendrift.models.basemodel:1527: 1771 active elements
10:53:18 DEBUG opendrift.models.basemodel:1538: 59.1202853811776 <- latitude -> 59.18204944875924
10:53:18 DEBUG opendrift.models.basemodel:1543: 10.94364844465343 <- longitude -> 11.020951159945184
10:53:18 DEBUG opendrift.models.basemodel:1548: -13.428723335266113 <- z -> 0.0
10:53:18 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:18 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:18 DEBUG opendrift.models.physics_methods:940: min: 1.167680, mean: 6.331646, max: 11.727111
10:53:18 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 1.167680, mean: 6.331646, max: 11.727111
10:53:18 DEBUG opendrift.models.basemodel:813: 124 elements hit coastline, moving back to water
10:53:18 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:53:18 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:18 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:18 DEBUG opendrift.models.physics_methods:741: Advecting 42 of 1771 elements above 0.100m with wind-sheared ocean current (0.000127 m/s - 0.231698 m/s)
10:53:18 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:18 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:18 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.17017464746864316
10:53:18 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:18 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:18 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:18 DEBUG opendrift.models.oceandrift:572: 252 elements penetrated seafloor, lifting up
10:53:18 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:18 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:18 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:18 DEBUG opendrift.models.oceandrift:572: 230 elements penetrated seafloor, lifting up
10:53:18 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:18 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:18 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:18 DEBUG opendrift.models.oceandrift:572: 210 elements penetrated seafloor, lifting up
10:53:18 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:53:18 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:53:18 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:53:18 DEBUG opendrift.models.oceandrift:572: 189 elements penetrated seafloor, lifting up
10:53:18 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:18 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:18 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:18 DEBUG opendrift.models.oceandrift:572: 185 elements penetrated seafloor, lifting up
10:53:18 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:18 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:18 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:18 DEBUG opendrift.models.oceandrift:572: 189 elements penetrated seafloor, lifting up
10:53:18 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:53:18 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:53:18 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:53:18 DEBUG opendrift.models.oceandrift:572: 187 elements penetrated seafloor, lifting up
10:53:18 DEBUG opendrift.models.oceandrift:590: 21 elements reached seafloor, set to bottom
10:53:18 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
10:53:18 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
10:53:18 DEBUG opendrift.models.oceandrift:572: 181 elements penetrated seafloor, lifting up
10:53:18 DEBUG opendrift.models.oceandrift:590: 13 elements reached seafloor, set to bottom
10:53:18 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
10:53:18 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
10:53:18 DEBUG opendrift.models.oceandrift:572: 209 elements penetrated seafloor, lifting up
10:53:18 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:53:18 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:53:18 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:53:18 DEBUG opendrift.models.oceandrift:572: 198 elements penetrated seafloor, lifting up
10:53:18 DEBUG opendrift.models.oceandrift:590: 13 elements reached seafloor, set to bottom
10:53:18 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
10:53:18 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
10:53:18 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:18 DEBUG opendrift.models.basemodel:2945: 1771 active elements (0 deactivated)
10:53:18 DEBUG opendrift.models.basemodel:1658: to be seeded: 8229, already seeded 1771
10:53:18 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:18 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:18 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:18 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:18 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:18 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:18 DEBUG opendrift.models.basemodel:1253: Data needed for 1806 elements
10:53:18 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:18 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 19:00:00 (before)
2023-08-21 20:00:00 (after)
10:53:18 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 19:00:00) in space (linearNDFast)
10:53:18 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:18 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:18 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:18 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:18 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:18 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:18 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.1127 (max)
10:53:18 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:18 DEBUG opendrift.models.basemodel:1527: 1806 active elements
10:53:18 DEBUG opendrift.models.basemodel:1538: 59.1205454209733 <- latitude -> 59.18320550150959
10:53:18 DEBUG opendrift.models.basemodel:1543: 10.9432386531691 <- longitude -> 11.02336746471347
10:53:18 DEBUG opendrift.models.basemodel:1548: -14.027671813964844 <- z -> 0.0
10:53:18 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:18 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
10:53:18 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:18 INFO opendrift.models.basemodel:2882: 2023-08-21 19:22:19.552469 - step 52 of 216 - 1806 active elements (0 deactivated)
10:53:18 DEBUG opendrift.models.basemodel:2888: 8194 elements scheduled.
10:53:18 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:18 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:18 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:18 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:18 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:18 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:18 DEBUG opendrift.models.basemodel:1253: Data needed for 1806 elements
10:53:18 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:18 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:18 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:18 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:18 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:18 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:18 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:18 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:18 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:18 DEBUG opendrift.models.basemodel:1253: Data needed for 1806 elements
10:53:18 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:18 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 19:00:00 (before)
2023-08-21 20:00:00 (after)
10:53:19 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:19 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:19 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:19 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:19 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:19 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:19 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 22x19x5) for time after (2023-08-21 20:00:00)
10:53:19 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 19:00:00) in space (linearNDFast)
10:53:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:19 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 20:00:00) in space (linearNDFast)
10:53:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 623 elements, expanding data 1
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 623 elements, expanding data 1
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 682 elements, expanding data 1
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 682 elements, expanding data 1
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 682 elements, expanding data 1
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 682 elements, expanding data 1
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 682 elements, expanding data 1
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 2
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1259 elements, expanding data 1
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 179 elements, expanding data 2
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1259 elements, expanding data 1
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 179 elements, expanding data 2
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1259 elements, expanding data 1
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 179 elements, expanding data 2
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1259 elements, expanding data 1
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 179 elements, expanding data 2
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1259 elements, expanding data 1
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 179 elements, expanding data 2
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 623 elements, expanding data 1
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 623 elements, expanding data 1
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 623 elements, expanding data 1
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 623 elements, expanding data 1
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 623 elements, expanding data 1
10:53:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:19 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 19:00:00, weight 0.63) and
after (2023-08-21 20:00:00, weight 0.37) in time
10:53:19 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05677190483816 and -58.97664308642619 degrees.
10:53:19 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05677190483816 and -58.97664308642619 degrees.
10:53:19 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:19 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:19 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:19 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:19 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:19 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:19 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.6985 (min) 0.892781 (max)
10:53:19 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.10173 (min) 0.822456 (max)
10:53:19 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000312112 (min) 0.000300216 (max)
10:53:19 DEBUG opendrift.models.basemodel:1524: x_wind: -0.484324 (min) 14.4785 (max)
10:53:19 DEBUG opendrift.models.basemodel:1524: y_wind: -3.66681 (min) 8.89702 (max)
10:53:19 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:19 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:19 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:19 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:19 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:19 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:19 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:19 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.1127 (max)
10:53:19 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:19 DEBUG opendrift.models.basemodel:1527: 1806 active elements
10:53:19 DEBUG opendrift.models.basemodel:1538: 59.1205454209733 <- latitude -> 59.18320550150959
10:53:19 DEBUG opendrift.models.basemodel:1543: 10.9432386531691 <- longitude -> 11.02336746471347
10:53:19 DEBUG opendrift.models.basemodel:1548: -14.019364356994629 <- z -> 0.0
10:53:19 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:19 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:19 DEBUG opendrift.models.physics_methods:940: min: 0.945481, mean: 6.206429, max: 12.445585
10:53:19 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.945481, mean: 6.206429, max: 12.445585
10:53:19 DEBUG opendrift.models.basemodel:813: 141 elements hit coastline, moving back to water
10:53:19 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:53:19 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:19 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:19 DEBUG opendrift.models.physics_methods:741: Advecting 40 of 1806 elements above 0.100m with wind-sheared ocean current (0.007182 m/s - 0.232883 m/s)
10:53:19 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:19 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:19 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.19166474936588285
10:53:19 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:19 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:19 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:19 DEBUG opendrift.models.oceandrift:572: 213 elements penetrated seafloor, lifting up
10:53:19 DEBUG opendrift.models.oceandrift:590: 16 elements reached seafloor, set to bottom
10:53:19 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
10:53:19 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
10:53:19 DEBUG opendrift.models.oceandrift:572: 191 elements penetrated seafloor, lifting up
10:53:19 DEBUG opendrift.models.oceandrift:590: 18 elements reached seafloor, set to bottom
10:53:19 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
10:53:19 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
10:53:19 DEBUG opendrift.models.oceandrift:572: 195 elements penetrated seafloor, lifting up
10:53:19 DEBUG opendrift.models.oceandrift:590: 14 elements reached seafloor, set to bottom
10:53:19 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
10:53:19 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
10:53:19 DEBUG opendrift.models.oceandrift:572: 178 elements penetrated seafloor, lifting up
10:53:19 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:19 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:19 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:19 DEBUG opendrift.models.oceandrift:572: 205 elements penetrated seafloor, lifting up
10:53:19 DEBUG opendrift.models.oceandrift:590: 16 elements reached seafloor, set to bottom
10:53:19 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
10:53:19 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
10:53:19 DEBUG opendrift.models.oceandrift:572: 177 elements penetrated seafloor, lifting up
10:53:19 DEBUG opendrift.models.oceandrift:590: 11 elements reached seafloor, set to bottom
10:53:19 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:53:19 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
10:53:19 DEBUG opendrift.models.oceandrift:572: 173 elements penetrated seafloor, lifting up
10:53:19 DEBUG opendrift.models.oceandrift:590: 16 elements reached seafloor, set to bottom
10:53:19 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
10:53:19 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
10:53:19 DEBUG opendrift.models.oceandrift:572: 175 elements penetrated seafloor, lifting up
10:53:19 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:53:19 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:53:19 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:53:19 DEBUG opendrift.models.oceandrift:572: 204 elements penetrated seafloor, lifting up
10:53:19 DEBUG opendrift.models.oceandrift:590: 14 elements reached seafloor, set to bottom
10:53:19 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
10:53:19 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
10:53:19 DEBUG opendrift.models.oceandrift:572: 167 elements penetrated seafloor, lifting up
10:53:19 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:53:19 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:53:19 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:53:19 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:19 DEBUG opendrift.models.basemodel:2945: 1806 active elements (0 deactivated)
10:53:19 DEBUG opendrift.models.basemodel:1658: to be seeded: 8194, already seeded 1806
10:53:19 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:19 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:19 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:19 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:19 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:19 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:19 DEBUG opendrift.models.basemodel:1253: Data needed for 1841 elements
10:53:19 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:19 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 19:00:00 (before)
2023-08-21 20:00:00 (after)
10:53:19 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 19:00:00) in space (linearNDFast)
10:53:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:19 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:19 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:19 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:19 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:19 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:19 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.02292 (min) 14.2086 (max)
10:53:19 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:19 DEBUG opendrift.models.basemodel:1527: 1841 active elements
10:53:19 DEBUG opendrift.models.basemodel:1538: 59.119826214432265 <- latitude -> 59.18359453719033
10:53:19 DEBUG opendrift.models.basemodel:1543: 10.942565469622838 <- longitude -> 11.024806939515793
10:53:19 DEBUG opendrift.models.basemodel:1548: -14.009363403320313 <- z -> 0.0
10:53:19 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:19 DEBUG opendrift.models.basemodel:836: Lifting 87 elements to seafloor.
10:53:19 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:19 INFO opendrift.models.basemodel:2882: 2023-08-21 19:32:19.552469 - step 53 of 216 - 1841 active elements (0 deactivated)
10:53:19 DEBUG opendrift.models.basemodel:2888: 8159 elements scheduled.
10:53:19 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:19 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:19 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:19 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:19 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:19 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:19 DEBUG opendrift.models.basemodel:1253: Data needed for 1841 elements
10:53:19 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:19 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:19 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:19 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:19 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:19 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:19 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:19 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:19 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:19 DEBUG opendrift.models.basemodel:1253: Data needed for 1841 elements
10:53:19 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:19 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 19:00:00 (before)
2023-08-21 20:00:00 (after)
10:53:20 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:20 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:20 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:20 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:20 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:20 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:20 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 22x19x5) for time after (2023-08-21 20:00:00)
10:53:20 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 19:00:00) in space (linearNDFast)
10:53:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:20 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 20:00:00) in space (linearNDFast)
10:53:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 644 elements, expanding data 1
10:53:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 644 elements, expanding data 1
10:53:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 697 elements, expanding data 1
10:53:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
10:53:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 697 elements, expanding data 1
10:53:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
10:53:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 697 elements, expanding data 1
10:53:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
10:53:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 697 elements, expanding data 1
10:53:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
10:53:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 697 elements, expanding data 1
10:53:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
10:53:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1285 elements, expanding data 1
10:53:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 187 elements, expanding data 2
10:53:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1285 elements, expanding data 1
10:53:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 187 elements, expanding data 2
10:53:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1285 elements, expanding data 1
10:53:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 187 elements, expanding data 2
10:53:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1285 elements, expanding data 1
10:53:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 187 elements, expanding data 2
10:53:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1285 elements, expanding data 1
10:53:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 187 elements, expanding data 2
10:53:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 644 elements, expanding data 1
10:53:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 644 elements, expanding data 1
10:53:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 644 elements, expanding data 1
10:53:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 644 elements, expanding data 1
10:53:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 644 elements, expanding data 1
10:53:20 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 19:00:00, weight 0.46) and
after (2023-08-21 20:00:00, weight 0.54) in time
10:53:20 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05744508482873 and -58.97520361217671 degrees.
10:53:20 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05744508482873 and -58.97520361217671 degrees.
10:53:20 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:20 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:20 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:20 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:20 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:20 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:20 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.589512 (min) 0.96682 (max)
10:53:20 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.766043 (min) 1.04406 (max)
10:53:20 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000311082 (min) 0.000269611 (max)
10:53:20 DEBUG opendrift.models.basemodel:1524: x_wind: 0.399844 (min) 13.2396 (max)
10:53:20 DEBUG opendrift.models.basemodel:1524: y_wind: -3.632 (min) 8.92966 (max)
10:53:20 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:20 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:20 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:20 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:20 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:20 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:20 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:20 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.02292 (min) 14.2086 (max)
10:53:20 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:20 DEBUG opendrift.models.basemodel:1527: 1841 active elements
10:53:20 DEBUG opendrift.models.basemodel:1538: 59.119826214432265 <- latitude -> 59.18359453719033
10:53:20 DEBUG opendrift.models.basemodel:1543: 10.942565469622838 <- longitude -> 11.024806939515793
10:53:20 DEBUG opendrift.models.basemodel:1548: -14.009363403320313 <- z -> 0.0
10:53:20 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:20 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:20 DEBUG opendrift.models.physics_methods:940: min: 0.699884, mean: 6.069442, max: 11.395080
10:53:20 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.699884, mean: 6.069442, max: 11.395080
10:53:20 DEBUG opendrift.models.basemodel:813: 164 elements hit coastline, moving back to water
10:53:20 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:53:20 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:20 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:20 DEBUG opendrift.models.physics_methods:741: Advecting 36 of 1841 elements above 0.100m with wind-sheared ocean current (0.006151 m/s - 0.235611 m/s)
10:53:20 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:20 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:20 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.1606749447108078
10:53:20 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:20 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:20 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:20 DEBUG opendrift.models.oceandrift:572: 238 elements penetrated seafloor, lifting up
10:53:20 DEBUG opendrift.models.oceandrift:590: 18 elements reached seafloor, set to bottom
10:53:20 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
10:53:20 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
10:53:20 DEBUG opendrift.models.oceandrift:572: 194 elements penetrated seafloor, lifting up
10:53:20 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:20 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:20 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:20 DEBUG opendrift.models.oceandrift:572: 196 elements penetrated seafloor, lifting up
10:53:20 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:53:20 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:53:20 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:53:20 DEBUG opendrift.models.oceandrift:572: 197 elements penetrated seafloor, lifting up
10:53:20 DEBUG opendrift.models.oceandrift:590: 14 elements reached seafloor, set to bottom
10:53:20 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
10:53:20 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
10:53:20 DEBUG opendrift.models.oceandrift:572: 201 elements penetrated seafloor, lifting up
10:53:20 DEBUG opendrift.models.oceandrift:590: 11 elements reached seafloor, set to bottom
10:53:20 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:53:20 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
10:53:20 DEBUG opendrift.models.oceandrift:572: 204 elements penetrated seafloor, lifting up
10:53:20 DEBUG opendrift.models.oceandrift:590: 14 elements reached seafloor, set to bottom
10:53:20 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
10:53:20 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
10:53:20 DEBUG opendrift.models.oceandrift:572: 193 elements penetrated seafloor, lifting up
10:53:20 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:20 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:20 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:20 DEBUG opendrift.models.oceandrift:572: 189 elements penetrated seafloor, lifting up
10:53:20 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:20 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:20 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:20 DEBUG opendrift.models.oceandrift:572: 170 elements penetrated seafloor, lifting up
10:53:20 DEBUG opendrift.models.oceandrift:590: 11 elements reached seafloor, set to bottom
10:53:20 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:53:20 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
10:53:20 DEBUG opendrift.models.oceandrift:572: 202 elements penetrated seafloor, lifting up
10:53:20 DEBUG opendrift.models.oceandrift:590: 13 elements reached seafloor, set to bottom
10:53:20 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
10:53:20 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
10:53:20 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:20 DEBUG opendrift.models.basemodel:2945: 1841 active elements (0 deactivated)
10:53:20 DEBUG opendrift.models.basemodel:1658: to be seeded: 8159, already seeded 1841
10:53:20 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:53:20 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:20 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:20 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:20 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:20 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:20 DEBUG opendrift.models.basemodel:1253: Data needed for 1875 elements
10:53:20 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:20 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 19:00:00 (before)
2023-08-21 20:00:00 (after)
10:53:20 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 19:00:00) in space (linearNDFast)
10:53:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:20 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:20 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:20 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:20 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:20 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:20 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.2656 (max)
10:53:20 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:20 DEBUG opendrift.models.basemodel:1527: 1875 active elements
10:53:20 DEBUG opendrift.models.basemodel:1538: 59.11828419320938 <- latitude -> 59.182720822779146
10:53:20 DEBUG opendrift.models.basemodel:1543: 10.94157122870464 <- longitude -> 11.023020840822511
10:53:20 DEBUG opendrift.models.basemodel:1548: -14.198629608154297 <- z -> 0.0
10:53:20 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:20 DEBUG opendrift.models.basemodel:836: Lifting 81 elements to seafloor.
10:53:20 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:20 INFO opendrift.models.basemodel:2882: 2023-08-21 19:42:19.552469 - step 54 of 216 - 1875 active elements (0 deactivated)
10:53:20 DEBUG opendrift.models.basemodel:2888: 8125 elements scheduled.
10:53:20 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:20 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:20 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:20 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:20 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:20 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:20 DEBUG opendrift.models.basemodel:1253: Data needed for 1875 elements
10:53:20 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:20 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:20 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:20 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:20 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:20 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:20 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:20 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:20 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:20 DEBUG opendrift.models.basemodel:1253: Data needed for 1875 elements
10:53:20 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:20 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 19:00:00 (before)
2023-08-21 20:00:00 (after)
10:53:21 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:21 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:21 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:21 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:21 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:21 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:21 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 23x21x5) for time after (2023-08-21 20:00:00)
10:53:21 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 19:00:00) in space (linearNDFast)
10:53:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:21 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 20:00:00) in space (linearNDFast)
10:53:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 657 elements, expanding data 1
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 657 elements, expanding data 1
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 715 elements, expanding data 1
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 715 elements, expanding data 1
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 715 elements, expanding data 1
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 715 elements, expanding data 1
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 715 elements, expanding data 1
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1299 elements, expanding data 1
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 194 elements, expanding data 2
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1299 elements, expanding data 1
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 194 elements, expanding data 2
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1299 elements, expanding data 1
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 194 elements, expanding data 2
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1299 elements, expanding data 1
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 194 elements, expanding data 2
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1299 elements, expanding data 1
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 194 elements, expanding data 2
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 657 elements, expanding data 1
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 657 elements, expanding data 1
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 657 elements, expanding data 1
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 657 elements, expanding data 1
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 657 elements, expanding data 1
10:53:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:21 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 19:00:00, weight 0.29) and
after (2023-08-21 20:00:00, weight 0.71) in time
10:53:21 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05843933124345 and -58.976989708060756 degrees.
10:53:21 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05843933124345 and -58.976989708060756 degrees.
10:53:21 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:21 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:21 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:21 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:21 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:21 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:21 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.679534 (min) 1.03693 (max)
10:53:21 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.904997 (min) 0.863418 (max)
10:53:21 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000269766 (min) 0.000222576 (max)
10:53:21 DEBUG opendrift.models.basemodel:1524: x_wind: -0.48821 (min) 12.476 (max)
10:53:21 DEBUG opendrift.models.basemodel:1524: y_wind: -3.90406 (min) 10.4785 (max)
10:53:21 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:21 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:21 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:21 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:21 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:21 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:21 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:21 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.2656 (max)
10:53:21 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:21 DEBUG opendrift.models.basemodel:1527: 1875 active elements
10:53:21 DEBUG opendrift.models.basemodel:1538: 59.11828419320938 <- latitude -> 59.182720822779146
10:53:21 DEBUG opendrift.models.basemodel:1543: 10.94157122870464 <- longitude -> 11.023020840822511
10:53:21 DEBUG opendrift.models.basemodel:1548: -14.198629608154297 <- z -> 0.0
10:53:21 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:21 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:21 DEBUG opendrift.models.physics_methods:940: min: 0.566023, mean: 6.036410, max: 11.713425
10:53:21 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.566023, mean: 6.036410, max: 11.713425
10:53:21 DEBUG opendrift.models.basemodel:813: 146 elements hit coastline, moving back to water
10:53:21 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
10:53:21 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:21 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:21 DEBUG opendrift.models.physics_methods:741: Advecting 39 of 1875 elements above 0.100m with wind-sheared ocean current (0.005607 m/s - 0.218020 m/s)
10:53:21 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:21 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:21 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.16977768407066343
10:53:21 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:21 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:21 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:21 DEBUG opendrift.models.oceandrift:572: 250 elements penetrated seafloor, lifting up
10:53:21 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:21 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:21 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:21 DEBUG opendrift.models.oceandrift:572: 221 elements penetrated seafloor, lifting up
10:53:21 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:21 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:21 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:21 DEBUG opendrift.models.oceandrift:572: 202 elements penetrated seafloor, lifting up
10:53:21 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:21 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:21 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:21 DEBUG opendrift.models.oceandrift:572: 196 elements penetrated seafloor, lifting up
10:53:21 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:21 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:21 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:21 DEBUG opendrift.models.oceandrift:572: 188 elements penetrated seafloor, lifting up
10:53:21 DEBUG opendrift.models.oceandrift:590: 11 elements reached seafloor, set to bottom
10:53:21 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:53:21 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
10:53:21 DEBUG opendrift.models.oceandrift:572: 211 elements penetrated seafloor, lifting up
10:53:21 DEBUG opendrift.models.oceandrift:590: 15 elements reached seafloor, set to bottom
10:53:21 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
10:53:21 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
10:53:21 DEBUG opendrift.models.oceandrift:572: 205 elements penetrated seafloor, lifting up
10:53:21 DEBUG opendrift.models.oceandrift:590: 14 elements reached seafloor, set to bottom
10:53:21 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
10:53:21 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
10:53:21 DEBUG opendrift.models.oceandrift:572: 180 elements penetrated seafloor, lifting up
10:53:21 DEBUG opendrift.models.oceandrift:590: 11 elements reached seafloor, set to bottom
10:53:21 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:53:21 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
10:53:21 DEBUG opendrift.models.oceandrift:572: 176 elements penetrated seafloor, lifting up
10:53:21 DEBUG opendrift.models.oceandrift:590: 14 elements reached seafloor, set to bottom
10:53:21 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
10:53:21 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
10:53:21 DEBUG opendrift.models.oceandrift:572: 196 elements penetrated seafloor, lifting up
10:53:21 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:21 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:21 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:21 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:21 DEBUG opendrift.models.basemodel:2945: 1875 active elements (0 deactivated)
10:53:21 DEBUG opendrift.models.basemodel:1658: to be seeded: 8125, already seeded 1875
10:53:21 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:21 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:21 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:21 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:21 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:21 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:21 DEBUG opendrift.models.basemodel:1253: Data needed for 1910 elements
10:53:21 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:21 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 19:00:00 (before)
2023-08-21 20:00:00 (after)
10:53:21 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 19:00:00) in space (linearNDFast)
10:53:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:21 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:21 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:21 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:21 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:21 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:21 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.09341 (min) 14.3855 (max)
10:53:21 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:21 DEBUG opendrift.models.basemodel:1527: 1910 active elements
10:53:21 DEBUG opendrift.models.basemodel:1538: 59.11754264825933 <- latitude -> 59.18385643644707
10:53:21 DEBUG opendrift.models.basemodel:1543: 10.945684539215142 <- longitude -> 11.023773266219676
10:53:21 DEBUG opendrift.models.basemodel:1548: -13.857415199279785 <- z -> 0.0
10:53:21 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:21 DEBUG opendrift.models.basemodel:836: Lifting 80 elements to seafloor.
10:53:21 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:21 INFO opendrift.models.basemodel:2882: 2023-08-21 19:52:19.552469 - step 55 of 216 - 1910 active elements (0 deactivated)
10:53:21 DEBUG opendrift.models.basemodel:2888: 8090 elements scheduled.
10:53:21 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:21 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:21 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:21 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:21 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:21 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:21 DEBUG opendrift.models.basemodel:1253: Data needed for 1910 elements
10:53:21 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:21 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:21 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:21 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:21 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:21 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:21 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:21 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:21 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:21 DEBUG opendrift.models.basemodel:1253: Data needed for 1910 elements
10:53:21 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:21 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 19:00:00 (before)
2023-08-21 20:00:00 (after)
10:53:22 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:22 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:22 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:22 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:22 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:22 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:22 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 23x19x5) for time after (2023-08-21 20:00:00)
10:53:22 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 19:00:00) in space (linearNDFast)
10:53:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:22 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 20:00:00) in space (linearNDFast)
10:53:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 666 elements, expanding data 1
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 666 elements, expanding data 1
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 727 elements, expanding data 1
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 727 elements, expanding data 1
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 727 elements, expanding data 1
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 727 elements, expanding data 1
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 727 elements, expanding data 1
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 2
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1324 elements, expanding data 1
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 187 elements, expanding data 2
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1324 elements, expanding data 1
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 187 elements, expanding data 2
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1324 elements, expanding data 1
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 187 elements, expanding data 2
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1324 elements, expanding data 1
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 187 elements, expanding data 2
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1324 elements, expanding data 1
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 187 elements, expanding data 2
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 666 elements, expanding data 1
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 666 elements, expanding data 1
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 666 elements, expanding data 1
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 666 elements, expanding data 1
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 666 elements, expanding data 1
10:53:22 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 19:00:00, weight 0.13) and
after (2023-08-21 20:00:00, weight 0.87) in time
10:53:22 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.054326027621464 and -58.97623728747261 degrees.
10:53:22 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.054326027621464 and -58.97623728747261 degrees.
10:53:22 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:22 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:22 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:22 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:22 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:22 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:22 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.579338 (min) 0.951729 (max)
10:53:22 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.992897 (min) 0.757565 (max)
10:53:22 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000275504 (min) 0.000248505 (max)
10:53:22 DEBUG opendrift.models.basemodel:1524: x_wind: -0.651134 (min) 13.3429 (max)
10:53:22 DEBUG opendrift.models.basemodel:1524: y_wind: -3.95284 (min) 10.08 (max)
10:53:22 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:22 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:22 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:22 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:22 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:22 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:22 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:22 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.09341 (min) 14.3855 (max)
10:53:22 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:22 DEBUG opendrift.models.basemodel:1527: 1910 active elements
10:53:22 DEBUG opendrift.models.basemodel:1538: 59.11754264825933 <- latitude -> 59.18385643644707
10:53:22 DEBUG opendrift.models.basemodel:1543: 10.945684539215142 <- longitude -> 11.023773266219676
10:53:22 DEBUG opendrift.models.basemodel:1548: -13.857415199279785 <- z -> 0.0
10:53:22 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:22 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:22 DEBUG opendrift.models.physics_methods:940: min: 0.644907, mean: 6.009528, max: 12.841155
10:53:22 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.644907, mean: 6.009528, max: 12.841155
10:53:22 DEBUG opendrift.models.basemodel:813: 169 elements hit coastline, moving back to water
10:53:22 DEBUG opendrift.models.basemodel:836: Lifting 2 elements to seafloor.
10:53:22 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:22 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:22 DEBUG opendrift.models.physics_methods:741: Advecting 38 of 1910 elements above 0.100m with wind-sheared ocean current (0.017345 m/s - 0.219805 m/s)
10:53:22 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:22 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:22 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.20404181882102965
10:53:22 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:22 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:22 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:22 DEBUG opendrift.models.oceandrift:572: 228 elements penetrated seafloor, lifting up
10:53:22 DEBUG opendrift.models.oceandrift:590: 17 elements reached seafloor, set to bottom
10:53:22 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
10:53:22 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
10:53:22 DEBUG opendrift.models.oceandrift:572: 233 elements penetrated seafloor, lifting up
10:53:22 DEBUG opendrift.models.oceandrift:590: 14 elements reached seafloor, set to bottom
10:53:22 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
10:53:22 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
10:53:22 DEBUG opendrift.models.oceandrift:572: 216 elements penetrated seafloor, lifting up
10:53:22 DEBUG opendrift.models.oceandrift:590: 15 elements reached seafloor, set to bottom
10:53:22 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
10:53:22 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
10:53:22 DEBUG opendrift.models.oceandrift:572: 192 elements penetrated seafloor, lifting up
10:53:22 DEBUG opendrift.models.oceandrift:590: 14 elements reached seafloor, set to bottom
10:53:22 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
10:53:22 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
10:53:22 DEBUG opendrift.models.oceandrift:572: 185 elements penetrated seafloor, lifting up
10:53:22 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:53:22 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:53:22 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:53:22 DEBUG opendrift.models.oceandrift:572: 183 elements penetrated seafloor, lifting up
10:53:22 DEBUG opendrift.models.oceandrift:590: 15 elements reached seafloor, set to bottom
10:53:22 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
10:53:22 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
10:53:22 DEBUG opendrift.models.oceandrift:572: 204 elements penetrated seafloor, lifting up
10:53:22 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:22 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:22 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:22 DEBUG opendrift.models.oceandrift:572: 196 elements penetrated seafloor, lifting up
10:53:22 DEBUG opendrift.models.oceandrift:590: 19 elements reached seafloor, set to bottom
10:53:22 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
10:53:22 DEBUG opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
10:53:22 DEBUG opendrift.models.oceandrift:572: 204 elements penetrated seafloor, lifting up
10:53:22 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:22 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:22 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:22 DEBUG opendrift.models.oceandrift:572: 168 elements penetrated seafloor, lifting up
10:53:22 DEBUG opendrift.models.oceandrift:590: 23 elements reached seafloor, set to bottom
10:53:22 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
10:53:22 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
10:53:22 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:22 DEBUG opendrift.models.basemodel:2945: 1910 active elements (0 deactivated)
10:53:22 DEBUG opendrift.models.basemodel:1658: to be seeded: 8090, already seeded 1910
10:53:22 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:22 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:22 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:22 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:22 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:22 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:22 DEBUG opendrift.models.basemodel:1253: Data needed for 1945 elements
10:53:22 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:22 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 20:00:00 (before)
2023-08-21 21:00:00 (after)
10:53:22 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 20:00:00) in space (linearNDFast)
10:53:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:22 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:22 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:22 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:22 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:22 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:22 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.4617 (max)
10:53:22 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:22 DEBUG opendrift.models.basemodel:1527: 1945 active elements
10:53:22 DEBUG opendrift.models.basemodel:1538: 59.11559417474395 <- latitude -> 59.18445080438137
10:53:22 DEBUG opendrift.models.basemodel:1543: 10.94458422233713 <- longitude -> 11.023593083416111
10:53:22 DEBUG opendrift.models.basemodel:1548: -13.857415199279785 <- z -> 0.0
10:53:22 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:22 DEBUG opendrift.models.basemodel:836: Lifting 89 elements to seafloor.
10:53:22 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:22 INFO opendrift.models.basemodel:2882: 2023-08-21 20:02:19.552469 - step 56 of 216 - 1945 active elements (0 deactivated)
10:53:22 DEBUG opendrift.models.basemodel:2888: 8055 elements scheduled.
10:53:22 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:22 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:22 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:22 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:22 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:22 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:22 DEBUG opendrift.models.basemodel:1253: Data needed for 1945 elements
10:53:22 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:22 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:22 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:22 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:22 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:22 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:22 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:22 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:22 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:22 DEBUG opendrift.models.basemodel:1253: Data needed for 1945 elements
10:53:22 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:22 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 20:00:00 (before)
2023-08-21 21:00:00 (after)
10:53:23 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:23 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:23 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:23 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:23 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:23 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:23 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 23x20x5) for time after (2023-08-21 21:00:00)
10:53:23 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 20:00:00) in space (linearNDFast)
10:53:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:23 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 21:00:00) in space (linearNDFast)
10:53:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 684 elements, expanding data 1
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 684 elements, expanding data 1
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 752 elements, expanding data 1
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 752 elements, expanding data 1
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 752 elements, expanding data 1
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 752 elements, expanding data 1
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 752 elements, expanding data 1
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1349 elements, expanding data 1
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 199 elements, expanding data 2
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1349 elements, expanding data 1
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 199 elements, expanding data 2
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1349 elements, expanding data 1
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 199 elements, expanding data 2
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1349 elements, expanding data 1
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 199 elements, expanding data 2
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1349 elements, expanding data 1
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 199 elements, expanding data 2
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 684 elements, expanding data 1
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 684 elements, expanding data 1
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 684 elements, expanding data 1
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 684 elements, expanding data 1
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 684 elements, expanding data 1
10:53:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:23 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 20:00:00, weight 0.96) and
after (2023-08-21 21:00:00, weight 0.04) in time
10:53:23 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05542633366507 and -58.97641745533532 degrees.
10:53:23 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05542633366507 and -58.97641745533532 degrees.
10:53:23 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:23 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:23 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:23 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:23 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:23 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:23 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.68967 (min) 0.873392 (max)
10:53:23 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.962705 (min) 0.67514 (max)
10:53:23 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000301683 (min) 0.00028385 (max)
10:53:23 DEBUG opendrift.models.basemodel:1524: x_wind: -0.50482 (min) 13.4096 (max)
10:53:23 DEBUG opendrift.models.basemodel:1524: y_wind: -4.14649 (min) 10.8734 (max)
10:53:23 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:23 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:23 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:23 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:23 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:23 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:23 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:23 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.4617 (max)
10:53:23 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:23 DEBUG opendrift.models.basemodel:1527: 1945 active elements
10:53:23 DEBUG opendrift.models.basemodel:1538: 59.11559417474395 <- latitude -> 59.18445080438137
10:53:23 DEBUG opendrift.models.basemodel:1543: 10.94458422233713 <- longitude -> 11.023593083416111
10:53:23 DEBUG opendrift.models.basemodel:1548: -13.857415199279785 <- z -> 0.0
10:53:23 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:23 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:23 DEBUG opendrift.models.physics_methods:940: min: 0.162148, mean: 5.793792, max: 12.756990
10:53:23 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.162148, mean: 5.793792, max: 12.756990
10:53:23 DEBUG opendrift.models.basemodel:813: 167 elements hit coastline, moving back to water
10:53:23 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
10:53:23 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:23 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:23 DEBUG opendrift.models.physics_methods:741: Advecting 39 of 1945 elements above 0.100m with wind-sheared ocean current (0.008707 m/s - 0.197835 m/s)
10:53:23 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:23 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:23 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.2013759634877014
10:53:23 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:23 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:23 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:23 DEBUG opendrift.models.oceandrift:572: 256 elements penetrated seafloor, lifting up
10:53:23 DEBUG opendrift.models.oceandrift:590: 24 elements reached seafloor, set to bottom
10:53:23 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
10:53:23 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
10:53:23 DEBUG opendrift.models.oceandrift:572: 217 elements penetrated seafloor, lifting up
10:53:23 DEBUG opendrift.models.oceandrift:590: 13 elements reached seafloor, set to bottom
10:53:23 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
10:53:23 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
10:53:23 DEBUG opendrift.models.oceandrift:572: 217 elements penetrated seafloor, lifting up
10:53:23 DEBUG opendrift.models.oceandrift:590: 18 elements reached seafloor, set to bottom
10:53:23 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
10:53:23 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
10:53:23 DEBUG opendrift.models.oceandrift:572: 222 elements penetrated seafloor, lifting up
10:53:23 DEBUG opendrift.models.oceandrift:590: 14 elements reached seafloor, set to bottom
10:53:23 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
10:53:23 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
10:53:23 DEBUG opendrift.models.oceandrift:572: 208 elements penetrated seafloor, lifting up
10:53:23 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:53:23 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:53:23 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:53:23 DEBUG opendrift.models.oceandrift:572: 196 elements penetrated seafloor, lifting up
10:53:23 DEBUG opendrift.models.oceandrift:590: 13 elements reached seafloor, set to bottom
10:53:23 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
10:53:23 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
10:53:23 DEBUG opendrift.models.oceandrift:572: 195 elements penetrated seafloor, lifting up
10:53:23 DEBUG opendrift.models.oceandrift:590: 21 elements reached seafloor, set to bottom
10:53:23 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
10:53:23 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
10:53:23 DEBUG opendrift.models.oceandrift:572: 217 elements penetrated seafloor, lifting up
10:53:23 DEBUG opendrift.models.oceandrift:590: 21 elements reached seafloor, set to bottom
10:53:23 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
10:53:23 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
10:53:23 DEBUG opendrift.models.oceandrift:572: 185 elements penetrated seafloor, lifting up
10:53:23 DEBUG opendrift.models.oceandrift:590: 14 elements reached seafloor, set to bottom
10:53:23 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
10:53:23 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
10:53:23 DEBUG opendrift.models.oceandrift:572: 183 elements penetrated seafloor, lifting up
10:53:23 DEBUG opendrift.models.oceandrift:590: 14 elements reached seafloor, set to bottom
10:53:23 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
10:53:23 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
10:53:23 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:23 DEBUG opendrift.models.basemodel:2945: 1945 active elements (0 deactivated)
10:53:23 DEBUG opendrift.models.basemodel:1658: to be seeded: 8055, already seeded 1945
10:53:23 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:53:23 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:23 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:23 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:23 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:23 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:23 DEBUG opendrift.models.basemodel:1253: Data needed for 1979 elements
10:53:23 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:23 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 20:00:00 (before)
2023-08-21 21:00:00 (after)
10:53:23 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 20:00:00) in space (linearNDFast)
10:53:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:23 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:23 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:23 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:23 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:23 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:23 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.4636 (max)
10:53:23 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:23 DEBUG opendrift.models.basemodel:1527: 1979 active elements
10:53:23 DEBUG opendrift.models.basemodel:1538: 59.115194926441916 <- latitude -> 59.18440121726712
10:53:23 DEBUG opendrift.models.basemodel:1543: 10.945838048252373 <- longitude -> 11.024443981456892
10:53:23 DEBUG opendrift.models.basemodel:1548: -13.847415199279785 <- z -> 0.0
10:53:23 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:23 DEBUG opendrift.models.basemodel:836: Lifting 93 elements to seafloor.
10:53:23 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:23 INFO opendrift.models.basemodel:2882: 2023-08-21 20:12:19.552469 - step 57 of 216 - 1979 active elements (0 deactivated)
10:53:23 DEBUG opendrift.models.basemodel:2888: 8021 elements scheduled.
10:53:23 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:23 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:23 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:23 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:23 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:23 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:23 DEBUG opendrift.models.basemodel:1253: Data needed for 1979 elements
10:53:23 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:23 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:23 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:23 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:23 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:23 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:23 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:23 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:23 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:23 DEBUG opendrift.models.basemodel:1253: Data needed for 1979 elements
10:53:23 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:23 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 20:00:00 (before)
2023-08-21 21:00:00 (after)
10:53:24 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:24 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:24 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:24 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:24 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:24 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:24 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 23x20x5) for time after (2023-08-21 21:00:00)
10:53:24 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 20:00:00) in space (linearNDFast)
10:53:24 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:24 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 21:00:00) in space (linearNDFast)
10:53:24 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 719 elements, expanding data 1
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 719 elements, expanding data 1
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 788 elements, expanding data 1
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 2
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 788 elements, expanding data 1
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 2
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 788 elements, expanding data 1
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 2
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 788 elements, expanding data 1
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 2
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 788 elements, expanding data 1
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 65 elements, expanding data 2
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1372 elements, expanding data 1
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 213 elements, expanding data 2
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1372 elements, expanding data 1
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 213 elements, expanding data 2
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1372 elements, expanding data 1
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 213 elements, expanding data 2
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1372 elements, expanding data 1
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 213 elements, expanding data 2
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1372 elements, expanding data 1
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 213 elements, expanding data 2
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 719 elements, expanding data 1
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 719 elements, expanding data 1
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 719 elements, expanding data 1
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 719 elements, expanding data 1
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 719 elements, expanding data 1
10:53:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:24 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 20:00:00, weight 0.79) and
after (2023-08-21 21:00:00, weight 0.21) in time
10:53:24 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.054172516735676 and -58.97556656524297 degrees.
10:53:24 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.054172516735676 and -58.97556656524297 degrees.
10:53:24 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:24 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:24 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:24 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:24 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:24 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:24 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.729726 (min) 1.05453 (max)
10:53:24 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.01283 (min) 0.736425 (max)
10:53:24 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000244929 (min) 0.000293985 (max)
10:53:24 DEBUG opendrift.models.basemodel:1524: x_wind: -0.541387 (min) 13.477 (max)
10:53:24 DEBUG opendrift.models.basemodel:1524: y_wind: -3.9801 (min) 8.6196 (max)
10:53:24 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:24 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:24 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:24 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:24 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:24 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:24 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:24 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.4636 (max)
10:53:24 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:24 DEBUG opendrift.models.basemodel:1527: 1979 active elements
10:53:24 DEBUG opendrift.models.basemodel:1538: 59.115194926441916 <- latitude -> 59.18440121726712
10:53:24 DEBUG opendrift.models.basemodel:1543: 10.945838048252373 <- longitude -> 11.024443981456892
10:53:24 DEBUG opendrift.models.basemodel:1548: -13.847415199279785 <- z -> 0.0
10:53:24 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:24 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:24 DEBUG opendrift.models.physics_methods:940: min: 0.750863, mean: 5.636501, max: 12.353088
10:53:24 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.750863, mean: 5.636501, max: 12.353088
10:53:24 DEBUG opendrift.models.basemodel:813: 167 elements hit coastline, moving back to water
10:53:24 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:53:24 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:24 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:24 DEBUG opendrift.models.physics_methods:741: Advecting 43 of 1979 elements above 0.100m with wind-sheared ocean current (0.014668 m/s - 0.199646 m/s)
10:53:24 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:24 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:24 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.18882645400817868
10:53:24 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:24 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:24 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:24 DEBUG opendrift.models.oceandrift:572: 257 elements penetrated seafloor, lifting up
10:53:24 DEBUG opendrift.models.oceandrift:590: 20 elements reached seafloor, set to bottom
10:53:24 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
10:53:24 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
10:53:24 DEBUG opendrift.models.oceandrift:572: 212 elements penetrated seafloor, lifting up
10:53:24 DEBUG opendrift.models.oceandrift:590: 13 elements reached seafloor, set to bottom
10:53:24 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
10:53:24 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
10:53:24 DEBUG opendrift.models.oceandrift:572: 188 elements penetrated seafloor, lifting up
10:53:24 DEBUG opendrift.models.oceandrift:590: 18 elements reached seafloor, set to bottom
10:53:24 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
10:53:24 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
10:53:24 DEBUG opendrift.models.oceandrift:572: 190 elements penetrated seafloor, lifting up
10:53:24 DEBUG opendrift.models.oceandrift:590: 18 elements reached seafloor, set to bottom
10:53:24 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
10:53:24 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
10:53:24 DEBUG opendrift.models.oceandrift:572: 197 elements penetrated seafloor, lifting up
10:53:24 DEBUG opendrift.models.oceandrift:590: 20 elements reached seafloor, set to bottom
10:53:24 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
10:53:24 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
10:53:24 DEBUG opendrift.models.oceandrift:572: 185 elements penetrated seafloor, lifting up
10:53:24 DEBUG opendrift.models.oceandrift:590: 17 elements reached seafloor, set to bottom
10:53:24 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
10:53:24 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
10:53:24 DEBUG opendrift.models.oceandrift:572: 186 elements penetrated seafloor, lifting up
10:53:24 DEBUG opendrift.models.oceandrift:590: 16 elements reached seafloor, set to bottom
10:53:24 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
10:53:24 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
10:53:24 DEBUG opendrift.models.oceandrift:572: 168 elements penetrated seafloor, lifting up
10:53:24 DEBUG opendrift.models.oceandrift:590: 11 elements reached seafloor, set to bottom
10:53:24 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:53:24 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
10:53:24 DEBUG opendrift.models.oceandrift:572: 183 elements penetrated seafloor, lifting up
10:53:24 DEBUG opendrift.models.oceandrift:590: 11 elements reached seafloor, set to bottom
10:53:24 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:53:24 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
10:53:24 DEBUG opendrift.models.oceandrift:572: 194 elements penetrated seafloor, lifting up
10:53:24 DEBUG opendrift.models.oceandrift:590: 11 elements reached seafloor, set to bottom
10:53:24 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:53:24 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
10:53:24 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:24 DEBUG opendrift.models.basemodel:2945: 1979 active elements (0 deactivated)
10:53:24 DEBUG opendrift.models.basemodel:1658: to be seeded: 8021, already seeded 1979
10:53:24 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:24 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:24 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:24 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:24 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:24 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:24 DEBUG opendrift.models.basemodel:1253: Data needed for 2014 elements
10:53:24 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:24 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 20:00:00 (before)
2023-08-21 21:00:00 (after)
10:53:24 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 20:00:00) in space (linearNDFast)
10:53:24 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:24 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:24 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:24 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:24 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:24 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:24 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.15024 (min) 14.4619 (max)
10:53:24 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:24 DEBUG opendrift.models.basemodel:1527: 2014 active elements
10:53:24 DEBUG opendrift.models.basemodel:1538: 59.115509671989955 <- latitude -> 59.185747770161726
10:53:24 DEBUG opendrift.models.basemodel:1543: 10.94512977588238 <- longitude -> 11.02308959896414
10:53:24 DEBUG opendrift.models.basemodel:1548: -14.07900260925293 <- z -> 0.0
10:53:24 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:24 DEBUG opendrift.models.basemodel:836: Lifting 98 elements to seafloor.
10:53:24 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:24 INFO opendrift.models.basemodel:2882: 2023-08-21 20:22:19.552469 - step 58 of 216 - 2014 active elements (0 deactivated)
10:53:24 DEBUG opendrift.models.basemodel:2888: 7986 elements scheduled.
10:53:24 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:24 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:24 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:24 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:24 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:24 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:24 DEBUG opendrift.models.basemodel:1253: Data needed for 2014 elements
10:53:24 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:24 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:24 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:24 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:24 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:24 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:24 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:24 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:24 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:24 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:24 DEBUG opendrift.models.basemodel:1253: Data needed for 2014 elements
10:53:24 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:24 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 20:00:00 (before)
2023-08-21 21:00:00 (after)
10:53:25 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:25 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:25 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:25 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:25 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:25 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:25 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 23x20x5) for time after (2023-08-21 21:00:00)
10:53:25 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 20:00:00) in space (linearNDFast)
10:53:25 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:25 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 21:00:00) in space (linearNDFast)
10:53:25 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 714 elements, expanding data 1
10:53:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 714 elements, expanding data 1
10:53:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 777 elements, expanding data 1
10:53:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
10:53:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 777 elements, expanding data 1
10:53:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
10:53:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 777 elements, expanding data 1
10:53:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
10:53:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 777 elements, expanding data 1
10:53:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
10:53:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 777 elements, expanding data 1
10:53:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 2
10:53:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1398 elements, expanding data 1
10:53:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 201 elements, expanding data 2
10:53:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1398 elements, expanding data 1
10:53:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 201 elements, expanding data 2
10:53:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1398 elements, expanding data 1
10:53:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 201 elements, expanding data 2
10:53:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1398 elements, expanding data 1
10:53:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 201 elements, expanding data 2
10:53:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1398 elements, expanding data 1
10:53:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 201 elements, expanding data 2
10:53:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 714 elements, expanding data 1
10:53:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 714 elements, expanding data 1
10:53:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 714 elements, expanding data 1
10:53:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 714 elements, expanding data 1
10:53:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 714 elements, expanding data 1
10:53:25 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 20:00:00, weight 0.63) and
after (2023-08-21 21:00:00, weight 0.37) in time
10:53:25 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05488078979225 and -58.976920943782595 degrees.
10:53:25 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05488078979225 and -58.976920943782595 degrees.
10:53:25 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:25 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:25 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:25 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:25 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:25 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:25 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.73845 (min) 0.989167 (max)
10:53:25 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.962124 (min) 0.843839 (max)
10:53:25 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000211327 (min) 0.000262531 (max)
10:53:25 DEBUG opendrift.models.basemodel:1524: x_wind: -0.913025 (min) 12.0077 (max)
10:53:25 DEBUG opendrift.models.basemodel:1524: y_wind: -4.89493 (min) 9.19673 (max)
10:53:25 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:25 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:25 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:25 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:25 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:25 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:25 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:25 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.15024 (min) 14.4619 (max)
10:53:25 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:25 DEBUG opendrift.models.basemodel:1527: 2014 active elements
10:53:25 DEBUG opendrift.models.basemodel:1538: 59.115509671989955 <- latitude -> 59.185747770161726
10:53:25 DEBUG opendrift.models.basemodel:1543: 10.94512977588238 <- longitude -> 11.02308959896414
10:53:25 DEBUG opendrift.models.basemodel:1548: -13.995867729187012 <- z -> 0.0
10:53:25 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:25 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:25 DEBUG opendrift.models.physics_methods:940: min: 0.487232, mean: 5.550824, max: 11.419138
10:53:25 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.487232, mean: 5.550824, max: 11.419138
10:53:25 DEBUG opendrift.models.basemodel:813: 149 elements hit coastline, moving back to water
10:53:25 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:53:25 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:25 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:25 DEBUG opendrift.models.physics_methods:741: Advecting 37 of 2014 elements above 0.100m with wind-sheared ocean current (0.014642 m/s - 0.247698 m/s)
10:53:25 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:25 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:25 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.16135407627399442
10:53:25 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:25 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:25 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:25 DEBUG opendrift.models.oceandrift:572: 263 elements penetrated seafloor, lifting up
10:53:25 DEBUG opendrift.models.oceandrift:590: 17 elements reached seafloor, set to bottom
10:53:25 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
10:53:25 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
10:53:25 DEBUG opendrift.models.oceandrift:572: 223 elements penetrated seafloor, lifting up
10:53:25 DEBUG opendrift.models.oceandrift:590: 22 elements reached seafloor, set to bottom
10:53:25 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
10:53:25 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
10:53:25 DEBUG opendrift.models.oceandrift:572: 213 elements penetrated seafloor, lifting up
10:53:25 DEBUG opendrift.models.oceandrift:590: 18 elements reached seafloor, set to bottom
10:53:25 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
10:53:25 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
10:53:25 DEBUG opendrift.models.oceandrift:572: 203 elements penetrated seafloor, lifting up
10:53:25 DEBUG opendrift.models.oceandrift:590: 17 elements reached seafloor, set to bottom
10:53:25 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
10:53:25 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
10:53:25 DEBUG opendrift.models.oceandrift:572: 185 elements penetrated seafloor, lifting up
10:53:25 DEBUG opendrift.models.oceandrift:590: 7 elements reached seafloor, set to bottom
10:53:25 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:53:25 DEBUG opendrift.models.sedimentdrift:112: Settling 7 elements at seafloor
10:53:25 DEBUG opendrift.models.oceandrift:572: 176 elements penetrated seafloor, lifting up
10:53:25 DEBUG opendrift.models.oceandrift:590: 19 elements reached seafloor, set to bottom
10:53:25 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
10:53:25 DEBUG opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
10:53:25 DEBUG opendrift.models.oceandrift:572: 174 elements penetrated seafloor, lifting up
10:53:25 DEBUG opendrift.models.oceandrift:590: 15 elements reached seafloor, set to bottom
10:53:25 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
10:53:25 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
10:53:25 DEBUG opendrift.models.oceandrift:572: 184 elements penetrated seafloor, lifting up
10:53:25 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:25 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:25 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:25 DEBUG opendrift.models.oceandrift:572: 182 elements penetrated seafloor, lifting up
10:53:25 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:25 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:25 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:25 DEBUG opendrift.models.oceandrift:572: 171 elements penetrated seafloor, lifting up
10:53:25 DEBUG opendrift.models.oceandrift:590: 6 elements reached seafloor, set to bottom
10:53:25 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:53:25 DEBUG opendrift.models.sedimentdrift:112: Settling 6 elements at seafloor
10:53:25 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:25 DEBUG opendrift.models.basemodel:2945: 2014 active elements (0 deactivated)
10:53:25 DEBUG opendrift.models.basemodel:1658: to be seeded: 7986, already seeded 2014
10:53:25 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:25 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:25 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:25 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:25 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:25 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:25 DEBUG opendrift.models.basemodel:1253: Data needed for 2049 elements
10:53:25 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:25 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 20:00:00 (before)
2023-08-21 21:00:00 (after)
10:53:25 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 20:00:00) in space (linearNDFast)
10:53:25 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:25 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:25 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:25 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:25 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:25 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:25 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.4643 (max)
10:53:25 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:25 DEBUG opendrift.models.basemodel:1527: 2049 active elements
10:53:25 DEBUG opendrift.models.basemodel:1538: 59.11477800646669 <- latitude -> 59.18505026532
10:53:25 DEBUG opendrift.models.basemodel:1543: 10.940478622614936 <- longitude -> 11.025387313308515
10:53:25 DEBUG opendrift.models.basemodel:1548: -14.000106811523438 <- z -> 0.0
10:53:25 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:25 DEBUG opendrift.models.basemodel:836: Lifting 90 elements to seafloor.
10:53:25 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:25 INFO opendrift.models.basemodel:2882: 2023-08-21 20:32:19.552469 - step 59 of 216 - 2049 active elements (0 deactivated)
10:53:25 DEBUG opendrift.models.basemodel:2888: 7951 elements scheduled.
10:53:25 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:25 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:25 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:25 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:25 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:25 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:25 DEBUG opendrift.models.basemodel:1253: Data needed for 2049 elements
10:53:25 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:25 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:25 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:25 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:25 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:25 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:25 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:25 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:25 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:25 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:25 DEBUG opendrift.models.basemodel:1253: Data needed for 2049 elements
10:53:25 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:25 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 20:00:00 (before)
2023-08-21 21:00:00 (after)
10:53:26 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:26 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:26 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:26 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:26 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:26 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:26 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 23x21x5) for time after (2023-08-21 21:00:00)
10:53:26 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 20:00:00) in space (linearNDFast)
10:53:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:26 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 21:00:00) in space (linearNDFast)
10:53:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 736 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 736 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 798 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 2
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 798 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 2
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 798 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 2
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 798 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 2
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 798 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 2
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1425 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 217 elements, expanding data 2
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1425 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 217 elements, expanding data 2
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1425 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 217 elements, expanding data 2
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1425 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 217 elements, expanding data 2
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1425 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 217 elements, expanding data 2
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 736 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 736 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 736 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 736 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 736 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:26 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 20:00:00, weight 0.46) and
after (2023-08-21 21:00:00, weight 0.54) in time
10:53:26 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05953192815778 and -58.97462323216054 degrees.
10:53:26 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05953192815778 and -58.97462323216054 degrees.
10:53:26 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:26 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:26 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:26 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:26 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:26 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:26 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.62719 (min) 1.22075 (max)
10:53:26 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.975229 (min) 0.911746 (max)
10:53:26 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000251501 (min) 0.000300802 (max)
10:53:26 DEBUG opendrift.models.basemodel:1524: x_wind: -2.22411 (min) 12.6761 (max)
10:53:26 DEBUG opendrift.models.basemodel:1524: y_wind: -5.33641 (min) 8.87815 (max)
10:53:26 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:26 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:26 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:26 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:26 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:26 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:26 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:26 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.4643 (max)
10:53:26 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:26 DEBUG opendrift.models.basemodel:1527: 2049 active elements
10:53:26 DEBUG opendrift.models.basemodel:1538: 59.11477800646669 <- latitude -> 59.18505026532
10:53:26 DEBUG opendrift.models.basemodel:1543: 10.940478622614936 <- longitude -> 11.025387313308515
10:53:26 DEBUG opendrift.models.basemodel:1548: -14.000106811523438 <- z -> 0.0
10:53:26 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:26 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:26 DEBUG opendrift.models.physics_methods:940: min: 0.424395, mean: 5.453078, max: 10.972508
10:53:26 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.424395, mean: 5.453078, max: 10.972508
10:53:26 DEBUG opendrift.models.basemodel:813: 184 elements hit coastline, moving back to water
10:53:26 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:53:26 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:26 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:26 DEBUG opendrift.models.physics_methods:741: Advecting 38 of 2049 elements above 0.100m with wind-sheared ocean current (0.001730 m/s - 0.185567 m/s)
10:53:26 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:26 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:26 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.14897935498340603
10:53:26 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:26 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:26 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:26 DEBUG opendrift.models.oceandrift:572: 243 elements penetrated seafloor, lifting up
10:53:26 DEBUG opendrift.models.oceandrift:590: 14 elements reached seafloor, set to bottom
10:53:26 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
10:53:26 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
10:53:26 DEBUG opendrift.models.oceandrift:572: 229 elements penetrated seafloor, lifting up
10:53:26 DEBUG opendrift.models.oceandrift:590: 20 elements reached seafloor, set to bottom
10:53:26 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
10:53:26 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
10:53:26 DEBUG opendrift.models.oceandrift:572: 215 elements penetrated seafloor, lifting up
10:53:26 DEBUG opendrift.models.oceandrift:590: 15 elements reached seafloor, set to bottom
10:53:26 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
10:53:26 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
10:53:26 DEBUG opendrift.models.oceandrift:572: 193 elements penetrated seafloor, lifting up
10:53:26 DEBUG opendrift.models.oceandrift:590: 17 elements reached seafloor, set to bottom
10:53:26 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
10:53:26 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
10:53:26 DEBUG opendrift.models.oceandrift:572: 187 elements penetrated seafloor, lifting up
10:53:26 DEBUG opendrift.models.oceandrift:590: 8 elements reached seafloor, set to bottom
10:53:26 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:53:26 DEBUG opendrift.models.sedimentdrift:112: Settling 8 elements at seafloor
10:53:26 DEBUG opendrift.models.oceandrift:572: 190 elements penetrated seafloor, lifting up
10:53:26 DEBUG opendrift.models.oceandrift:590: 19 elements reached seafloor, set to bottom
10:53:26 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
10:53:26 DEBUG opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
10:53:26 DEBUG opendrift.models.oceandrift:572: 213 elements penetrated seafloor, lifting up
10:53:26 DEBUG opendrift.models.oceandrift:590: 22 elements reached seafloor, set to bottom
10:53:26 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
10:53:26 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
10:53:26 DEBUG opendrift.models.oceandrift:572: 189 elements penetrated seafloor, lifting up
10:53:26 DEBUG opendrift.models.oceandrift:590: 13 elements reached seafloor, set to bottom
10:53:26 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
10:53:26 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
10:53:26 DEBUG opendrift.models.oceandrift:572: 195 elements penetrated seafloor, lifting up
10:53:26 DEBUG opendrift.models.oceandrift:590: 16 elements reached seafloor, set to bottom
10:53:26 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
10:53:26 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
10:53:26 DEBUG opendrift.models.oceandrift:572: 177 elements penetrated seafloor, lifting up
10:53:26 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:26 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:26 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:26 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:26 DEBUG opendrift.models.basemodel:2945: 2049 active elements (0 deactivated)
10:53:26 DEBUG opendrift.models.basemodel:1658: to be seeded: 7951, already seeded 2049
10:53:26 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:26 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:26 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:26 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:26 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:26 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:26 DEBUG opendrift.models.basemodel:1253: Data needed for 2084 elements
10:53:26 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:26 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 20:00:00 (before)
2023-08-21 21:00:00 (after)
10:53:26 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 20:00:00) in space (linearNDFast)
10:53:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:26 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:26 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:26 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:26 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:26 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:26 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.5033 (max)
10:53:26 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:26 DEBUG opendrift.models.basemodel:1527: 2084 active elements
10:53:26 DEBUG opendrift.models.basemodel:1538: 59.11263095984248 <- latitude -> 59.18449149798507
10:53:26 DEBUG opendrift.models.basemodel:1543: 10.94452948531638 <- longitude -> 11.024753574659963
10:53:26 DEBUG opendrift.models.basemodel:1548: -13.990106811523438 <- z -> 0.0
10:53:26 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:26 DEBUG opendrift.models.basemodel:836: Lifting 96 elements to seafloor.
10:53:26 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:26 INFO opendrift.models.basemodel:2882: 2023-08-21 20:42:19.552469 - step 60 of 216 - 2084 active elements (0 deactivated)
10:53:26 DEBUG opendrift.models.basemodel:2888: 7916 elements scheduled.
10:53:26 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:26 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:26 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:26 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:26 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:26 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:26 DEBUG opendrift.models.basemodel:1253: Data needed for 2084 elements
10:53:26 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:26 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:26 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:26 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:26 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:26 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:26 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:26 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:26 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:26 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:26 DEBUG opendrift.models.basemodel:1253: Data needed for 2084 elements
10:53:26 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:26 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 20:00:00 (before)
2023-08-21 21:00:00 (after)
10:53:26 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:26 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:26 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:26 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:26 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:26 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:26 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 23x20x5) for time after (2023-08-21 21:00:00)
10:53:26 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 20:00:00) in space (linearNDFast)
10:53:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:26 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 21:00:00) in space (linearNDFast)
10:53:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 762 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 762 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 828 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 828 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 828 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 828 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 828 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1442 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 227 elements, expanding data 2
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1442 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 227 elements, expanding data 2
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1442 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 227 elements, expanding data 2
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1442 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 227 elements, expanding data 2
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1442 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 227 elements, expanding data 2
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 762 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 762 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 762 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 762 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 762 elements, expanding data 1
10:53:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:26 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 20:00:00, weight 0.29) and
after (2023-08-21 21:00:00, weight 0.71) in time
10:53:27 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.055481076971965 and -58.97525697510035 degrees.
10:53:27 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.055481076971965 and -58.97525697510035 degrees.
10:53:27 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:27 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:27 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:27 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:27 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:27 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:27 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.671014 (min) 1.1914 (max)
10:53:27 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.992584 (min) 0.755408 (max)
10:53:27 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000229062 (min) 0.000239405 (max)
10:53:27 DEBUG opendrift.models.basemodel:1524: x_wind: -0.767162 (min) 11.5652 (max)
10:53:27 DEBUG opendrift.models.basemodel:1524: y_wind: -4.23849 (min) 8.81135 (max)
10:53:27 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:27 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:27 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:27 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:27 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:27 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:27 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:27 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.5033 (max)
10:53:27 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:27 DEBUG opendrift.models.basemodel:1527: 2084 active elements
10:53:27 DEBUG opendrift.models.basemodel:1538: 59.11263095984248 <- latitude -> 59.18449149798507
10:53:27 DEBUG opendrift.models.basemodel:1543: 10.94452948531638 <- longitude -> 11.024753574659963
10:53:27 DEBUG opendrift.models.basemodel:1548: -13.990106811523438 <- z -> 0.0
10:53:27 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:27 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:27 DEBUG opendrift.models.physics_methods:940: min: 0.035164, mean: 5.241154, max: 10.287456
10:53:27 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.035164, mean: 5.241154, max: 10.287456
10:53:27 DEBUG opendrift.models.basemodel:813: 177 elements hit coastline, moving back to water
10:53:27 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
10:53:27 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:27 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:27 DEBUG opendrift.models.physics_methods:741: Advecting 41 of 2084 elements above 0.100m with wind-sheared ocean current (0.002802 m/s - 0.201326 m/s)
10:53:27 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:27 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:27 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.130957951178627
10:53:27 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:27 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:27 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:27 DEBUG opendrift.models.oceandrift:572: 237 elements penetrated seafloor, lifting up
10:53:27 DEBUG opendrift.models.oceandrift:590: 16 elements reached seafloor, set to bottom
10:53:27 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
10:53:27 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
10:53:27 DEBUG opendrift.models.oceandrift:572: 211 elements penetrated seafloor, lifting up
10:53:27 DEBUG opendrift.models.oceandrift:590: 16 elements reached seafloor, set to bottom
10:53:27 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
10:53:27 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
10:53:27 DEBUG opendrift.models.oceandrift:572: 227 elements penetrated seafloor, lifting up
10:53:27 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:53:27 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:53:27 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:53:27 DEBUG opendrift.models.oceandrift:572: 231 elements penetrated seafloor, lifting up
10:53:27 DEBUG opendrift.models.oceandrift:590: 21 elements reached seafloor, set to bottom
10:53:27 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
10:53:27 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
10:53:27 DEBUG opendrift.models.oceandrift:572: 221 elements penetrated seafloor, lifting up
10:53:27 DEBUG opendrift.models.oceandrift:590: 17 elements reached seafloor, set to bottom
10:53:27 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
10:53:27 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
10:53:27 DEBUG opendrift.models.oceandrift:572: 220 elements penetrated seafloor, lifting up
10:53:27 DEBUG opendrift.models.oceandrift:590: 14 elements reached seafloor, set to bottom
10:53:27 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
10:53:27 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
10:53:27 DEBUG opendrift.models.oceandrift:572: 192 elements penetrated seafloor, lifting up
10:53:27 DEBUG opendrift.models.oceandrift:590: 17 elements reached seafloor, set to bottom
10:53:27 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
10:53:27 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
10:53:27 DEBUG opendrift.models.oceandrift:572: 184 elements penetrated seafloor, lifting up
10:53:27 DEBUG opendrift.models.oceandrift:590: 15 elements reached seafloor, set to bottom
10:53:27 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
10:53:27 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
10:53:27 DEBUG opendrift.models.oceandrift:572: 191 elements penetrated seafloor, lifting up
10:53:27 DEBUG opendrift.models.oceandrift:590: 23 elements reached seafloor, set to bottom
10:53:27 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
10:53:27 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
10:53:27 DEBUG opendrift.models.oceandrift:572: 195 elements penetrated seafloor, lifting up
10:53:27 DEBUG opendrift.models.oceandrift:590: 11 elements reached seafloor, set to bottom
10:53:27 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:53:27 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
10:53:27 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:27 DEBUG opendrift.models.basemodel:2945: 2084 active elements (0 deactivated)
10:53:27 DEBUG opendrift.models.basemodel:1658: to be seeded: 7916, already seeded 2084
10:53:27 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:53:27 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:27 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:27 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:27 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:27 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:27 DEBUG opendrift.models.basemodel:1253: Data needed for 2118 elements
10:53:27 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:27 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 20:00:00 (before)
2023-08-21 21:00:00 (after)
10:53:27 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 20:00:00) in space (linearNDFast)
10:53:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:27 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:27 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:27 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:27 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:27 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:27 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.4079 (max)
10:53:27 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:27 DEBUG opendrift.models.basemodel:1527: 2118 active elements
10:53:27 DEBUG opendrift.models.basemodel:1538: 59.112184825826446 <- latitude -> 59.1850564132977
10:53:27 DEBUG opendrift.models.basemodel:1543: 10.945074946214742 <- longitude -> 11.023686256088153
10:53:27 DEBUG opendrift.models.basemodel:1548: -13.96878646850586 <- z -> 0.0
10:53:27 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:27 DEBUG opendrift.models.basemodel:836: Lifting 104 elements to seafloor.
10:53:27 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:27 INFO opendrift.models.basemodel:2882: 2023-08-21 20:52:19.552469 - step 61 of 216 - 2118 active elements (0 deactivated)
10:53:27 DEBUG opendrift.models.basemodel:2888: 7882 elements scheduled.
10:53:27 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:27 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:27 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:27 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:27 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:27 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:27 DEBUG opendrift.models.basemodel:1253: Data needed for 2118 elements
10:53:27 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:27 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:27 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:27 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:27 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:27 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:27 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:27 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:27 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:27 DEBUG opendrift.models.basemodel:1253: Data needed for 2118 elements
10:53:27 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:27 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 20:00:00 (before)
2023-08-21 21:00:00 (after)
10:53:27 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:27 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:27 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:27 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:27 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:27 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:27 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 23x20x5) for time after (2023-08-21 21:00:00)
10:53:27 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 20:00:00) in space (linearNDFast)
10:53:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:27 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 21:00:00) in space (linearNDFast)
10:53:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 787 elements, expanding data 1
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 787 elements, expanding data 1
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 859 elements, expanding data 1
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 859 elements, expanding data 1
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 859 elements, expanding data 1
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 859 elements, expanding data 1
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 859 elements, expanding data 1
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1455 elements, expanding data 1
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1455 elements, expanding data 1
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1455 elements, expanding data 1
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1455 elements, expanding data 1
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1455 elements, expanding data 1
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 787 elements, expanding data 1
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 787 elements, expanding data 1
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 787 elements, expanding data 1
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 787 elements, expanding data 1
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 787 elements, expanding data 1
10:53:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:27 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 20:00:00, weight 0.13) and
after (2023-08-21 21:00:00, weight 0.87) in time
10:53:27 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.054935614158396 and -58.97632428676674 degrees.
10:53:27 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.054935614158396 and -58.97632428676674 degrees.
10:53:27 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:27 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:27 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:27 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:27 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:27 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:27 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.692754 (min) 1.05501 (max)
10:53:27 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.9342 (min) 0.65543 (max)
10:53:27 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000254683 (min) 0.000257044 (max)
10:53:27 DEBUG opendrift.models.basemodel:1524: x_wind: -1.76897 (min) 12.7835 (max)
10:53:27 DEBUG opendrift.models.basemodel:1524: y_wind: -4.57723 (min) 8.88571 (max)
10:53:27 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:27 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:27 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:27 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:27 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:27 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:27 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:27 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.4079 (max)
10:53:27 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:27 DEBUG opendrift.models.basemodel:1527: 2118 active elements
10:53:27 DEBUG opendrift.models.basemodel:1538: 59.112184825826446 <- latitude -> 59.1850564132977
10:53:27 DEBUG opendrift.models.basemodel:1543: 10.945074946214742 <- longitude -> 11.023686256088153
10:53:27 DEBUG opendrift.models.basemodel:1548: -13.96878646850586 <- z -> 0.0
10:53:27 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:28 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:28 DEBUG opendrift.models.physics_methods:940: min: 0.446256, mean: 5.121835, max: 11.258876
10:53:28 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.446256, mean: 5.121835, max: 11.258876
10:53:28 DEBUG opendrift.models.basemodel:813: 185 elements hit coastline, moving back to water
10:53:28 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:53:28 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:28 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:28 DEBUG opendrift.models.physics_methods:741: Advecting 38 of 2118 elements above 0.100m with wind-sheared ocean current (0.009026 m/s - 0.162166 m/s)
10:53:28 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:28 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:28 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.1568569350710678
10:53:28 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:28 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:28 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:28 DEBUG opendrift.models.oceandrift:572: 252 elements penetrated seafloor, lifting up
10:53:28 DEBUG opendrift.models.oceandrift:590: 14 elements reached seafloor, set to bottom
10:53:28 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
10:53:28 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
10:53:28 DEBUG opendrift.models.oceandrift:572: 230 elements penetrated seafloor, lifting up
10:53:28 DEBUG opendrift.models.oceandrift:590: 21 elements reached seafloor, set to bottom
10:53:28 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
10:53:28 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
10:53:28 DEBUG opendrift.models.oceandrift:572: 228 elements penetrated seafloor, lifting up
10:53:28 DEBUG opendrift.models.oceandrift:590: 15 elements reached seafloor, set to bottom
10:53:28 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
10:53:28 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
10:53:28 DEBUG opendrift.models.oceandrift:572: 197 elements penetrated seafloor, lifting up
10:53:28 DEBUG opendrift.models.oceandrift:590: 17 elements reached seafloor, set to bottom
10:53:28 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
10:53:28 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
10:53:28 DEBUG opendrift.models.oceandrift:572: 197 elements penetrated seafloor, lifting up
10:53:28 DEBUG opendrift.models.oceandrift:590: 18 elements reached seafloor, set to bottom
10:53:28 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
10:53:28 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
10:53:28 DEBUG opendrift.models.oceandrift:572: 198 elements penetrated seafloor, lifting up
10:53:28 DEBUG opendrift.models.oceandrift:590: 17 elements reached seafloor, set to bottom
10:53:28 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
10:53:28 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
10:53:28 DEBUG opendrift.models.oceandrift:572: 201 elements penetrated seafloor, lifting up
10:53:28 DEBUG opendrift.models.oceandrift:590: 12 elements reached seafloor, set to bottom
10:53:28 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:53:28 DEBUG opendrift.models.sedimentdrift:112: Settling 12 elements at seafloor
10:53:28 DEBUG opendrift.models.oceandrift:572: 176 elements penetrated seafloor, lifting up
10:53:28 DEBUG opendrift.models.oceandrift:590: 23 elements reached seafloor, set to bottom
10:53:28 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
10:53:28 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
10:53:28 DEBUG opendrift.models.oceandrift:572: 195 elements penetrated seafloor, lifting up
10:53:28 DEBUG opendrift.models.oceandrift:590: 13 elements reached seafloor, set to bottom
10:53:28 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
10:53:28 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
10:53:28 DEBUG opendrift.models.oceandrift:572: 190 elements penetrated seafloor, lifting up
10:53:28 DEBUG opendrift.models.oceandrift:590: 18 elements reached seafloor, set to bottom
10:53:28 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
10:53:28 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
10:53:28 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:28 DEBUG opendrift.models.basemodel:2945: 2118 active elements (0 deactivated)
10:53:28 DEBUG opendrift.models.basemodel:1658: to be seeded: 7882, already seeded 2118
10:53:28 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:28 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:28 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:28 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:28 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:28 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:28 DEBUG opendrift.models.basemodel:1253: Data needed for 2153 elements
10:53:28 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:28 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 21:00:00 (before)
2023-08-21 22:00:00 (after)
10:53:28 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 21:00:00) in space (linearNDFast)
10:53:28 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:28 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:28 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:28 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:28 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:28 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:28 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.5027 (max)
10:53:28 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:28 DEBUG opendrift.models.basemodel:1527: 2153 active elements
10:53:28 DEBUG opendrift.models.basemodel:1538: 59.11043140013308 <- latitude -> 59.18597960653949
10:53:28 DEBUG opendrift.models.basemodel:1543: 10.943701555306552 <- longitude -> 11.024729312640691
10:53:28 DEBUG opendrift.models.basemodel:1548: -13.803826560974121 <- z -> 0.0
10:53:28 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:28 DEBUG opendrift.models.basemodel:836: Lifting 116 elements to seafloor.
10:53:28 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:28 INFO opendrift.models.basemodel:2882: 2023-08-21 21:02:19.552469 - step 62 of 216 - 2153 active elements (0 deactivated)
10:53:28 DEBUG opendrift.models.basemodel:2888: 7847 elements scheduled.
10:53:28 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:28 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:28 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:28 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:28 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:28 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:28 DEBUG opendrift.models.basemodel:1253: Data needed for 2153 elements
10:53:28 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:28 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:28 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:28 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:28 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:28 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:28 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:28 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:28 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:28 DEBUG opendrift.models.basemodel:1253: Data needed for 2153 elements
10:53:28 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:28 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 21:00:00 (before)
2023-08-21 22:00:00 (after)
10:53:29 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:29 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:29 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:29 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:29 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:29 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:29 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 23x20x5) for time after (2023-08-21 22:00:00)
10:53:29 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 21:00:00) in space (linearNDFast)
10:53:29 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:29 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 22:00:00) in space (linearNDFast)
10:53:29 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 812 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 812 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 890 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 890 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 890 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 890 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 890 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1479 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 247 elements, expanding data 2
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1479 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 247 elements, expanding data 2
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1479 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 247 elements, expanding data 2
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1479 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 247 elements, expanding data 2
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1479 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 247 elements, expanding data 2
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 812 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 812 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 812 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 812 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 812 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:29 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 21:00:00, weight 0.96) and
after (2023-08-21 22:00:00, weight 0.04) in time
10:53:29 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05630900327511 and -58.975281233159706 degrees.
10:53:29 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05630900327511 and -58.975281233159706 degrees.
10:53:29 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:29 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:29 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:29 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:29 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:29 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:29 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.751615 (min) 1.06597 (max)
10:53:29 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.09333 (min) 0.62152 (max)
10:53:29 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.00021662 (min) 0.000267386 (max)
10:53:29 DEBUG opendrift.models.basemodel:1524: x_wind: -1.9248 (min) 11.7213 (max)
10:53:29 DEBUG opendrift.models.basemodel:1524: y_wind: -5.48191 (min) 9.26512 (max)
10:53:29 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:29 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:29 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:29 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:29 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:29 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:29 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:29 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.5027 (max)
10:53:29 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:29 DEBUG opendrift.models.basemodel:1527: 2153 active elements
10:53:29 DEBUG opendrift.models.basemodel:1538: 59.11043140013308 <- latitude -> 59.18597960653949
10:53:29 DEBUG opendrift.models.basemodel:1543: 10.943701555306552 <- longitude -> 11.024729312640691
10:53:29 DEBUG opendrift.models.basemodel:1548: -13.803826560974121 <- z -> 0.0
10:53:29 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:29 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:29 DEBUG opendrift.models.physics_methods:940: min: 0.364642, mean: 4.854755, max: 11.372661
10:53:29 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.364642, mean: 4.854755, max: 11.372661
10:53:29 DEBUG opendrift.models.basemodel:813: 199 elements hit coastline, moving back to water
10:53:29 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
10:53:29 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:29 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:29 DEBUG opendrift.models.physics_methods:741: Advecting 37 of 2153 elements above 0.100m with wind-sheared ocean current (0.008535 m/s - 0.171734 m/s)
10:53:29 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:29 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:29 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.16004334141071316
10:53:29 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:29 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:29 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:29 DEBUG opendrift.models.oceandrift:572: 243 elements penetrated seafloor, lifting up
10:53:29 DEBUG opendrift.models.oceandrift:590: 17 elements reached seafloor, set to bottom
10:53:29 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
10:53:29 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
10:53:29 DEBUG opendrift.models.oceandrift:572: 213 elements penetrated seafloor, lifting up
10:53:29 DEBUG opendrift.models.oceandrift:590: 16 elements reached seafloor, set to bottom
10:53:29 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
10:53:29 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
10:53:29 DEBUG opendrift.models.oceandrift:572: 208 elements penetrated seafloor, lifting up
10:53:29 DEBUG opendrift.models.oceandrift:590: 22 elements reached seafloor, set to bottom
10:53:29 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
10:53:29 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
10:53:29 DEBUG opendrift.models.oceandrift:572: 194 elements penetrated seafloor, lifting up
10:53:29 DEBUG opendrift.models.oceandrift:590: 21 elements reached seafloor, set to bottom
10:53:29 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
10:53:29 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
10:53:29 DEBUG opendrift.models.oceandrift:572: 192 elements penetrated seafloor, lifting up
10:53:29 DEBUG opendrift.models.oceandrift:590: 22 elements reached seafloor, set to bottom
10:53:29 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
10:53:29 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
10:53:29 DEBUG opendrift.models.oceandrift:572: 196 elements penetrated seafloor, lifting up
10:53:29 DEBUG opendrift.models.oceandrift:590: 13 elements reached seafloor, set to bottom
10:53:29 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
10:53:29 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
10:53:29 DEBUG opendrift.models.oceandrift:572: 184 elements penetrated seafloor, lifting up
10:53:29 DEBUG opendrift.models.oceandrift:590: 14 elements reached seafloor, set to bottom
10:53:29 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
10:53:29 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
10:53:29 DEBUG opendrift.models.oceandrift:572: 176 elements penetrated seafloor, lifting up
10:53:29 DEBUG opendrift.models.oceandrift:590: 21 elements reached seafloor, set to bottom
10:53:29 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
10:53:29 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
10:53:29 DEBUG opendrift.models.oceandrift:572: 195 elements penetrated seafloor, lifting up
10:53:29 DEBUG opendrift.models.oceandrift:590: 11 elements reached seafloor, set to bottom
10:53:29 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:53:29 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
10:53:29 DEBUG opendrift.models.oceandrift:572: 195 elements penetrated seafloor, lifting up
10:53:29 DEBUG opendrift.models.oceandrift:590: 15 elements reached seafloor, set to bottom
10:53:29 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
10:53:29 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
10:53:29 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:29 DEBUG opendrift.models.basemodel:2945: 2153 active elements (0 deactivated)
10:53:29 DEBUG opendrift.models.basemodel:1658: to be seeded: 7847, already seeded 2153
10:53:29 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:29 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:29 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:29 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:29 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:29 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:29 DEBUG opendrift.models.basemodel:1253: Data needed for 2188 elements
10:53:29 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:29 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 21:00:00 (before)
2023-08-21 22:00:00 (after)
10:53:29 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 21:00:00) in space (linearNDFast)
10:53:29 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:29 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:29 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:29 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:29 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:29 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:29 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.6396 (max)
10:53:29 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:29 DEBUG opendrift.models.basemodel:1527: 2188 active elements
10:53:29 DEBUG opendrift.models.basemodel:1538: 59.1110688461364 <- latitude -> 59.18520379848982
10:53:29 DEBUG opendrift.models.basemodel:1543: 10.943454085744749 <- longitude -> 11.026240774352717
10:53:29 DEBUG opendrift.models.basemodel:1548: -13.547989120483399 <- z -> 0.0
10:53:29 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:29 DEBUG opendrift.models.basemodel:836: Lifting 106 elements to seafloor.
10:53:29 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:29 INFO opendrift.models.basemodel:2882: 2023-08-21 21:12:19.552469 - step 63 of 216 - 2188 active elements (0 deactivated)
10:53:29 DEBUG opendrift.models.basemodel:2888: 7812 elements scheduled.
10:53:29 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:29 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:29 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:29 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:29 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:29 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:29 DEBUG opendrift.models.basemodel:1253: Data needed for 2188 elements
10:53:29 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:29 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:29 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:29 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:29 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:29 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:29 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:29 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:29 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:29 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:29 DEBUG opendrift.models.basemodel:1253: Data needed for 2188 elements
10:53:29 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:29 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 21:00:00 (before)
2023-08-21 22:00:00 (after)
10:53:29 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:29 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:29 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:29 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:29 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:29 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:29 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 24x20x5) for time after (2023-08-21 22:00:00)
10:53:29 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 21:00:00) in space (linearNDFast)
10:53:29 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:29 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 22:00:00) in space (linearNDFast)
10:53:29 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 837 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 837 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 915 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 2
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 915 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 2
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 915 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 2
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 915 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 2
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 915 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 2
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1490 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 253 elements, expanding data 2
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1490 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 253 elements, expanding data 2
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1490 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 253 elements, expanding data 2
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1490 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 253 elements, expanding data 2
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1490 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 253 elements, expanding data 2
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 837 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 837 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 837 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 837 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 837 elements, expanding data 1
10:53:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:29 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 21:00:00, weight 0.79) and
after (2023-08-21 22:00:00, weight 0.21) in time
10:53:29 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.056556473239795 and -58.97376977005045 degrees.
10:53:29 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.056556473239795 and -58.97376977005045 degrees.
10:53:29 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:29 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:29 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:29 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:29 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:29 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:29 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.638195 (min) 0.977231 (max)
10:53:29 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.956566 (min) 0.765602 (max)
10:53:29 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000318753 (min) 0.000219192 (max)
10:53:29 DEBUG opendrift.models.basemodel:1524: x_wind: -2.3068 (min) 11.3959 (max)
10:53:29 DEBUG opendrift.models.basemodel:1524: y_wind: -5.12151 (min) 8.41973 (max)
10:53:29 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:29 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:29 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:29 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:29 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:29 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:29 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:29 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.6396 (max)
10:53:29 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:29 DEBUG opendrift.models.basemodel:1527: 2188 active elements
10:53:29 DEBUG opendrift.models.basemodel:1538: 59.1110688461364 <- latitude -> 59.18520379848982
10:53:29 DEBUG opendrift.models.basemodel:1543: 10.943454085744749 <- longitude -> 11.026240774352717
10:53:29 DEBUG opendrift.models.basemodel:1548: -13.547989120483399 <- z -> 0.0
10:53:29 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:29 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:29 DEBUG opendrift.models.physics_methods:940: min: 0.258859, mean: 4.768694, max: 9.887647
10:53:29 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.258859, mean: 4.768694, max: 9.887647
10:53:29 DEBUG opendrift.models.basemodel:813: 201 elements hit coastline, moving back to water
10:53:29 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:53:29 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:29 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:29 DEBUG opendrift.models.physics_methods:741: Advecting 36 of 2188 elements above 0.100m with wind-sheared ocean current (0.016473 m/s - 0.215999 m/s)
10:53:29 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:29 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:29 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.1209770247569847
10:53:29 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:29 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:29 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:29 DEBUG opendrift.models.oceandrift:572: 251 elements penetrated seafloor, lifting up
10:53:29 DEBUG opendrift.models.oceandrift:590: 14 elements reached seafloor, set to bottom
10:53:29 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
10:53:29 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
10:53:29 DEBUG opendrift.models.oceandrift:572: 226 elements penetrated seafloor, lifting up
10:53:29 DEBUG opendrift.models.oceandrift:590: 13 elements reached seafloor, set to bottom
10:53:29 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
10:53:29 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
10:53:29 DEBUG opendrift.models.oceandrift:572: 204 elements penetrated seafloor, lifting up
10:53:29 DEBUG opendrift.models.oceandrift:590: 18 elements reached seafloor, set to bottom
10:53:29 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
10:53:29 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
10:53:29 DEBUG opendrift.models.oceandrift:572: 207 elements penetrated seafloor, lifting up
10:53:29 DEBUG opendrift.models.oceandrift:590: 15 elements reached seafloor, set to bottom
10:53:29 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
10:53:29 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
10:53:29 DEBUG opendrift.models.oceandrift:572: 205 elements penetrated seafloor, lifting up
10:53:29 DEBUG opendrift.models.oceandrift:590: 9 elements reached seafloor, set to bottom
10:53:29 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:29 DEBUG opendrift.models.sedimentdrift:112: Settling 9 elements at seafloor
10:53:29 DEBUG opendrift.models.oceandrift:572: 205 elements penetrated seafloor, lifting up
10:53:29 DEBUG opendrift.models.oceandrift:590: 11 elements reached seafloor, set to bottom
10:53:29 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:53:29 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
10:53:29 DEBUG opendrift.models.oceandrift:572: 211 elements penetrated seafloor, lifting up
10:53:29 DEBUG opendrift.models.oceandrift:590: 14 elements reached seafloor, set to bottom
10:53:29 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
10:53:29 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
10:53:29 DEBUG opendrift.models.oceandrift:572: 205 elements penetrated seafloor, lifting up
10:53:29 DEBUG opendrift.models.oceandrift:590: 17 elements reached seafloor, set to bottom
10:53:29 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
10:53:29 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
10:53:29 DEBUG opendrift.models.oceandrift:572: 189 elements penetrated seafloor, lifting up
10:53:29 DEBUG opendrift.models.oceandrift:590: 21 elements reached seafloor, set to bottom
10:53:29 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
10:53:29 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
10:53:29 DEBUG opendrift.models.oceandrift:572: 181 elements penetrated seafloor, lifting up
10:53:29 DEBUG opendrift.models.oceandrift:590: 20 elements reached seafloor, set to bottom
10:53:29 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
10:53:29 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
10:53:29 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:29 DEBUG opendrift.models.basemodel:2945: 2188 active elements (0 deactivated)
10:53:29 DEBUG opendrift.models.basemodel:1658: to be seeded: 7812, already seeded 2188
10:53:29 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:29 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:29 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:29 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:29 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:30 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:30 DEBUG opendrift.models.basemodel:1253: Data needed for 2223 elements
10:53:30 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:30 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 21:00:00 (before)
2023-08-21 22:00:00 (after)
10:53:30 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 21:00:00) in space (linearNDFast)
10:53:30 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:30 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:30 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:30 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:30 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:30 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:30 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.6508 (max)
10:53:30 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:30 DEBUG opendrift.models.basemodel:1527: 2223 active elements
10:53:30 DEBUG opendrift.models.basemodel:1538: 59.109093591148834 <- latitude -> 59.18747867416486
10:53:30 DEBUG opendrift.models.basemodel:1543: 10.944204381724594 <- longitude -> 11.023790890963891
10:53:30 DEBUG opendrift.models.basemodel:1548: -13.704314460754395 <- z -> 0.0
10:53:30 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:30 DEBUG opendrift.models.basemodel:836: Lifting 105 elements to seafloor.
10:53:30 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:30 INFO opendrift.models.basemodel:2882: 2023-08-21 21:22:19.552469 - step 64 of 216 - 2223 active elements (0 deactivated)
10:53:30 DEBUG opendrift.models.basemodel:2888: 7777 elements scheduled.
10:53:30 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:30 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:30 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:30 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:30 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:30 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:30 DEBUG opendrift.models.basemodel:1253: Data needed for 2223 elements
10:53:30 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:30 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:30 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:30 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:30 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:30 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:30 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:30 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:30 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:30 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:30 DEBUG opendrift.models.basemodel:1253: Data needed for 2223 elements
10:53:30 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:30 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 21:00:00 (before)
2023-08-21 22:00:00 (after)
10:53:30 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:30 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:30 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:30 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:30 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:30 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:30 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 24x20x5) for time after (2023-08-21 22:00:00)
10:53:30 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 21:00:00) in space (linearNDFast)
10:53:30 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:30 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 22:00:00) in space (linearNDFast)
10:53:30 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 831 elements, expanding data 1
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 831 elements, expanding data 1
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 917 elements, expanding data 1
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 917 elements, expanding data 1
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 917 elements, expanding data 1
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 917 elements, expanding data 1
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 917 elements, expanding data 1
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 73 elements, expanding data 2
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1521 elements, expanding data 1
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 257 elements, expanding data 2
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1521 elements, expanding data 1
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 257 elements, expanding data 2
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1521 elements, expanding data 1
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 257 elements, expanding data 2
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1521 elements, expanding data 1
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 257 elements, expanding data 2
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1521 elements, expanding data 1
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 257 elements, expanding data 2
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 831 elements, expanding data 1
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 831 elements, expanding data 1
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 831 elements, expanding data 1
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 831 elements, expanding data 1
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 831 elements, expanding data 1
10:53:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:30 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 21:00:00, weight 0.63) and
after (2023-08-21 22:00:00, weight 0.37) in time
10:53:30 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0558061774646 and -58.97621966338029 degrees.
10:53:30 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0558061774646 and -58.97621966338029 degrees.
10:53:30 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:30 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:30 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:30 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:30 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:30 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:30 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.720828 (min) 0.979322 (max)
10:53:30 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.06324 (min) 0.685391 (max)
10:53:30 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000250619 (min) 0.000249006 (max)
10:53:30 DEBUG opendrift.models.basemodel:1524: x_wind: -1.41541 (min) 10.6533 (max)
10:53:30 DEBUG opendrift.models.basemodel:1524: y_wind: -5.84622 (min) 9.36207 (max)
10:53:30 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:30 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:30 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:30 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:30 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:30 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:30 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:30 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.6508 (max)
10:53:30 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:30 DEBUG opendrift.models.basemodel:1527: 2223 active elements
10:53:30 DEBUG opendrift.models.basemodel:1538: 59.109093591148834 <- latitude -> 59.18747867416486
10:53:30 DEBUG opendrift.models.basemodel:1543: 10.944204381724594 <- longitude -> 11.023790890963891
10:53:30 DEBUG opendrift.models.basemodel:1548: -13.661407699584961 <- z -> 0.0
10:53:30 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:30 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:30 DEBUG opendrift.models.physics_methods:940: min: 0.173413, mean: 4.556098, max: 9.565942
10:53:30 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.173413, mean: 4.556098, max: 9.565942
10:53:30 DEBUG opendrift.models.basemodel:813: 175 elements hit coastline, moving back to water
10:53:30 DEBUG opendrift.models.basemodel:836: Lifting 4 elements to seafloor.
10:53:30 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:30 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:30 DEBUG opendrift.models.physics_methods:741: Advecting 39 of 2223 elements above 0.100m with wind-sheared ocean current (0.009745 m/s - 0.218345 m/s)
10:53:30 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:30 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:30 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.1132331399784851
10:53:30 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:30 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:30 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:30 DEBUG opendrift.models.oceandrift:572: 252 elements penetrated seafloor, lifting up
10:53:30 DEBUG opendrift.models.oceandrift:590: 17 elements reached seafloor, set to bottom
10:53:30 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
10:53:30 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
10:53:30 DEBUG opendrift.models.oceandrift:572: 225 elements penetrated seafloor, lifting up
10:53:30 DEBUG opendrift.models.oceandrift:590: 23 elements reached seafloor, set to bottom
10:53:30 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
10:53:30 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
10:53:30 DEBUG opendrift.models.oceandrift:572: 216 elements penetrated seafloor, lifting up
10:53:30 DEBUG opendrift.models.oceandrift:590: 17 elements reached seafloor, set to bottom
10:53:30 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
10:53:30 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
10:53:30 DEBUG opendrift.models.oceandrift:572: 198 elements penetrated seafloor, lifting up
10:53:30 DEBUG opendrift.models.oceandrift:590: 17 elements reached seafloor, set to bottom
10:53:30 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
10:53:30 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
10:53:30 DEBUG opendrift.models.oceandrift:572: 184 elements penetrated seafloor, lifting up
10:53:30 DEBUG opendrift.models.oceandrift:590: 18 elements reached seafloor, set to bottom
10:53:30 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
10:53:30 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
10:53:30 DEBUG opendrift.models.oceandrift:572: 176 elements penetrated seafloor, lifting up
10:53:30 DEBUG opendrift.models.oceandrift:590: 21 elements reached seafloor, set to bottom
10:53:30 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
10:53:30 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
10:53:30 DEBUG opendrift.models.oceandrift:572: 202 elements penetrated seafloor, lifting up
10:53:30 DEBUG opendrift.models.oceandrift:590: 14 elements reached seafloor, set to bottom
10:53:30 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
10:53:30 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
10:53:30 DEBUG opendrift.models.oceandrift:572: 168 elements penetrated seafloor, lifting up
10:53:30 DEBUG opendrift.models.oceandrift:590: 15 elements reached seafloor, set to bottom
10:53:30 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
10:53:30 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
10:53:30 DEBUG opendrift.models.oceandrift:572: 176 elements penetrated seafloor, lifting up
10:53:30 DEBUG opendrift.models.oceandrift:590: 14 elements reached seafloor, set to bottom
10:53:30 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
10:53:30 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
10:53:30 DEBUG opendrift.models.oceandrift:572: 160 elements penetrated seafloor, lifting up
10:53:30 DEBUG opendrift.models.oceandrift:590: 16 elements reached seafloor, set to bottom
10:53:30 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
10:53:30 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
10:53:30 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:30 DEBUG opendrift.models.basemodel:2945: 2223 active elements (0 deactivated)
10:53:30 DEBUG opendrift.models.basemodel:1658: to be seeded: 7777, already seeded 2223
10:53:30 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:53:30 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:30 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:30 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:30 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:30 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:30 DEBUG opendrift.models.basemodel:1253: Data needed for 2257 elements
10:53:30 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:30 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 21:00:00 (before)
2023-08-21 22:00:00 (after)
10:53:30 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 21:00:00) in space (linearNDFast)
10:53:30 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:30 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:30 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:30 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:30 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:30 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:30 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.03316 (min) 14.6379 (max)
10:53:30 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:30 DEBUG opendrift.models.basemodel:1527: 2257 active elements
10:53:30 DEBUG opendrift.models.basemodel:1538: 59.10957443910379 <- latitude -> 59.18669205018932
10:53:30 DEBUG opendrift.models.basemodel:1543: 10.94193904691357 <- longitude -> 11.023316590165644
10:53:30 DEBUG opendrift.models.basemodel:1548: -14.131314506530762 <- z -> 0.0
10:53:30 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:30 DEBUG opendrift.models.basemodel:836: Lifting 107 elements to seafloor.
10:53:30 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:30 INFO opendrift.models.basemodel:2882: 2023-08-21 21:32:19.552469 - step 65 of 216 - 2257 active elements (0 deactivated)
10:53:30 DEBUG opendrift.models.basemodel:2888: 7743 elements scheduled.
10:53:30 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:30 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:30 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:30 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:30 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:30 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:30 DEBUG opendrift.models.basemodel:1253: Data needed for 2257 elements
10:53:30 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:30 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:30 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:30 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:30 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:30 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:30 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:30 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:30 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:30 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:30 DEBUG opendrift.models.basemodel:1253: Data needed for 2257 elements
10:53:30 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:30 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 21:00:00 (before)
2023-08-21 22:00:00 (after)
10:53:31 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:31 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:31 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:31 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:31 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:31 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:31 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 24x20x5) for time after (2023-08-21 22:00:00)
10:53:31 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 21:00:00) in space (linearNDFast)
10:53:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:31 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 22:00:00) in space (linearNDFast)
10:53:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 873 elements, expanding data 1
10:53:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 873 elements, expanding data 1
10:53:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 954 elements, expanding data 1
10:53:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
10:53:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 954 elements, expanding data 1
10:53:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
10:53:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 954 elements, expanding data 1
10:53:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
10:53:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 954 elements, expanding data 1
10:53:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
10:53:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 954 elements, expanding data 1
10:53:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
10:53:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1557 elements, expanding data 1
10:53:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 267 elements, expanding data 2
10:53:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1557 elements, expanding data 1
10:53:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 267 elements, expanding data 2
10:53:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1557 elements, expanding data 1
10:53:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 267 elements, expanding data 2
10:53:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1557 elements, expanding data 1
10:53:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 267 elements, expanding data 2
10:53:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1557 elements, expanding data 1
10:53:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 267 elements, expanding data 2
10:53:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 873 elements, expanding data 1
10:53:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 873 elements, expanding data 1
10:53:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 873 elements, expanding data 1
10:53:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 873 elements, expanding data 1
10:53:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 873 elements, expanding data 1
10:53:31 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 21:00:00, weight 0.46) and
after (2023-08-21 22:00:00, weight 0.54) in time
10:53:31 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0580715136946 and -58.97669395519007 degrees.
10:53:31 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0580715136946 and -58.97669395519007 degrees.
10:53:31 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:31 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:31 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:31 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:31 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:31 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:31 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.72288 (min) 0.886517 (max)
10:53:31 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.860855 (min) 0.812745 (max)
10:53:31 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000304381 (min) 0.000235799 (max)
10:53:31 DEBUG opendrift.models.basemodel:1524: x_wind: -2.48951 (min) 11.1811 (max)
10:53:31 DEBUG opendrift.models.basemodel:1524: y_wind: -7.62364 (min) 8.55797 (max)
10:53:31 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:31 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:31 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:31 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:31 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:31 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:31 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:31 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5.03316 (min) 14.6379 (max)
10:53:31 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:31 DEBUG opendrift.models.basemodel:1527: 2257 active elements
10:53:31 DEBUG opendrift.models.basemodel:1538: 59.10957443910379 <- latitude -> 59.18669205018932
10:53:31 DEBUG opendrift.models.basemodel:1543: 10.94193904691357 <- longitude -> 11.023316590165644
10:53:31 DEBUG opendrift.models.basemodel:1548: -14.031910378469826 <- z -> 0.0
10:53:31 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:31 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:31 DEBUG opendrift.models.physics_methods:940: min: 0.088815, mean: 4.403396, max: 9.813527
10:53:31 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.088815, mean: 4.403396, max: 9.813527
10:53:31 DEBUG opendrift.models.basemodel:813: 200 elements hit coastline, moving back to water
10:53:31 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:53:31 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:31 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:31 DEBUG opendrift.models.physics_methods:741: Advecting 36 of 2257 elements above 0.100m with wind-sheared ocean current (0.011677 m/s - 0.174520 m/s)
10:53:31 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:31 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:31 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.11917014744003294
10:53:31 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:31 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:31 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:31 DEBUG opendrift.models.oceandrift:572: 264 elements penetrated seafloor, lifting up
10:53:31 DEBUG opendrift.models.oceandrift:590: 23 elements reached seafloor, set to bottom
10:53:31 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
10:53:31 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
10:53:31 DEBUG opendrift.models.oceandrift:572: 200 elements penetrated seafloor, lifting up
10:53:31 DEBUG opendrift.models.oceandrift:590: 19 elements reached seafloor, set to bottom
10:53:31 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
10:53:31 DEBUG opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
10:53:31 DEBUG opendrift.models.oceandrift:572: 196 elements penetrated seafloor, lifting up
10:53:31 DEBUG opendrift.models.oceandrift:590: 18 elements reached seafloor, set to bottom
10:53:31 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
10:53:31 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
10:53:31 DEBUG opendrift.models.oceandrift:572: 176 elements penetrated seafloor, lifting up
10:53:31 DEBUG opendrift.models.oceandrift:590: 22 elements reached seafloor, set to bottom
10:53:31 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
10:53:31 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
10:53:31 DEBUG opendrift.models.oceandrift:572: 161 elements penetrated seafloor, lifting up
10:53:31 DEBUG opendrift.models.oceandrift:590: 20 elements reached seafloor, set to bottom
10:53:31 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
10:53:31 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
10:53:31 DEBUG opendrift.models.oceandrift:572: 175 elements penetrated seafloor, lifting up
10:53:31 DEBUG opendrift.models.oceandrift:590: 20 elements reached seafloor, set to bottom
10:53:31 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
10:53:31 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
10:53:31 DEBUG opendrift.models.oceandrift:572: 173 elements penetrated seafloor, lifting up
10:53:31 DEBUG opendrift.models.oceandrift:590: 11 elements reached seafloor, set to bottom
10:53:31 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:53:31 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
10:53:31 DEBUG opendrift.models.oceandrift:572: 188 elements penetrated seafloor, lifting up
10:53:31 DEBUG opendrift.models.oceandrift:590: 20 elements reached seafloor, set to bottom
10:53:32 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
10:53:32 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
10:53:32 DEBUG opendrift.models.oceandrift:572: 167 elements penetrated seafloor, lifting up
10:53:32 DEBUG opendrift.models.oceandrift:590: 18 elements reached seafloor, set to bottom
10:53:32 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
10:53:32 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
10:53:32 DEBUG opendrift.models.oceandrift:572: 189 elements penetrated seafloor, lifting up
10:53:32 DEBUG opendrift.models.oceandrift:590: 20 elements reached seafloor, set to bottom
10:53:32 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
10:53:32 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
10:53:32 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:32 DEBUG opendrift.models.basemodel:2945: 2257 active elements (0 deactivated)
10:53:32 DEBUG opendrift.models.basemodel:1658: to be seeded: 7743, already seeded 2257
10:53:32 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:32 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:32 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:32 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:32 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:32 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:32 DEBUG opendrift.models.basemodel:1253: Data needed for 2292 elements
10:53:32 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:32 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 21:00:00 (before)
2023-08-21 22:00:00 (after)
10:53:32 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 21:00:00) in space (linearNDFast)
10:53:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:32 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:32 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:32 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:32 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:32 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:32 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.7179 (max)
10:53:32 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:32 DEBUG opendrift.models.basemodel:1527: 2292 active elements
10:53:32 DEBUG opendrift.models.basemodel:1538: 59.10889285300213 <- latitude -> 59.18625801755496
10:53:32 DEBUG opendrift.models.basemodel:1543: 10.943703207368504 <- longitude -> 11.022488332108532
10:53:32 DEBUG opendrift.models.basemodel:1548: -14.279490082922168 <- z -> 0.0
10:53:32 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:32 DEBUG opendrift.models.basemodel:836: Lifting 122 elements to seafloor.
10:53:32 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:32 INFO opendrift.models.basemodel:2882: 2023-08-21 21:42:19.552469 - step 66 of 216 - 2292 active elements (0 deactivated)
10:53:32 DEBUG opendrift.models.basemodel:2888: 7708 elements scheduled.
10:53:32 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:32 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:32 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:32 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:32 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:32 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:32 DEBUG opendrift.models.basemodel:1253: Data needed for 2292 elements
10:53:32 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:32 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:32 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:32 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:32 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:32 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:32 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:32 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:32 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:32 DEBUG opendrift.models.basemodel:1253: Data needed for 2292 elements
10:53:32 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:32 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 21:00:00 (before)
2023-08-21 22:00:00 (after)
10:53:32 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:32 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:32 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:32 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:32 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:32 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:32 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 24x21x5) for time after (2023-08-21 22:00:00)
10:53:32 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 21:00:00) in space (linearNDFast)
10:53:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:32 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 22:00:00) in space (linearNDFast)
10:53:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 880 elements, expanding data 1
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 880 elements, expanding data 1
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 957 elements, expanding data 1
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 2
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 957 elements, expanding data 1
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 2
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 957 elements, expanding data 1
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 2
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 957 elements, expanding data 1
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 2
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 957 elements, expanding data 1
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 2
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1564 elements, expanding data 1
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 290 elements, expanding data 2
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1564 elements, expanding data 1
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 290 elements, expanding data 2
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1564 elements, expanding data 1
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 290 elements, expanding data 2
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1564 elements, expanding data 1
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 290 elements, expanding data 2
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1564 elements, expanding data 1
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 290 elements, expanding data 2
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 880 elements, expanding data 1
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 880 elements, expanding data 1
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 880 elements, expanding data 1
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 880 elements, expanding data 1
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 880 elements, expanding data 1
10:53:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:32 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 21:00:00, weight 0.29) and
after (2023-08-21 22:00:00, weight 0.71) in time
10:53:32 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05630735897742 and -58.977522217899605 degrees.
10:53:32 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05630735897742 and -58.977522217899605 degrees.
10:53:32 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:32 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:32 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:32 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:32 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:32 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:32 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.814751 (min) 1.11709 (max)
10:53:32 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.05359 (min) 0.879022 (max)
10:53:32 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000259017 (min) 0.000246161 (max)
10:53:32 DEBUG opendrift.models.basemodel:1524: x_wind: -3.46641 (min) 11.7225 (max)
10:53:32 DEBUG opendrift.models.basemodel:1524: y_wind: -5.49968 (min) 7.66593 (max)
10:53:32 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:32 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:32 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:32 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:32 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:32 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:32 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:32 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.7179 (max)
10:53:32 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:32 DEBUG opendrift.models.basemodel:1527: 2292 active elements
10:53:32 DEBUG opendrift.models.basemodel:1538: 59.10889285300213 <- latitude -> 59.18625801755496
10:53:32 DEBUG opendrift.models.basemodel:1543: 10.943703207368504 <- longitude -> 11.022488332108532
10:53:32 DEBUG opendrift.models.basemodel:1548: -14.279490082922168 <- z -> 0.0
10:53:32 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:32 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:32 DEBUG opendrift.models.physics_methods:940: min: 0.045598, mean: 4.200112, max: 10.443192
10:53:32 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.045598, mean: 4.200112, max: 10.443192
10:53:32 DEBUG opendrift.models.basemodel:813: 216 elements hit coastline, moving back to water
10:53:32 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:53:32 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:32 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:32 DEBUG opendrift.models.physics_methods:741: Advecting 38 of 2292 elements above 0.100m with wind-sheared ocean current (0.015490 m/s - 0.178953 m/s)
10:53:32 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:32 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:32 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.13495284116895673
10:53:32 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:32 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:32 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:32 DEBUG opendrift.models.oceandrift:572: 276 elements penetrated seafloor, lifting up
10:53:32 DEBUG opendrift.models.oceandrift:590: 22 elements reached seafloor, set to bottom
10:53:32 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
10:53:32 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
10:53:32 DEBUG opendrift.models.oceandrift:572: 219 elements penetrated seafloor, lifting up
10:53:32 DEBUG opendrift.models.oceandrift:590: 25 elements reached seafloor, set to bottom
10:53:32 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
10:53:32 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
10:53:32 DEBUG opendrift.models.oceandrift:572: 192 elements penetrated seafloor, lifting up
10:53:32 DEBUG opendrift.models.oceandrift:590: 10 elements reached seafloor, set to bottom
10:53:32 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:53:32 DEBUG opendrift.models.sedimentdrift:112: Settling 10 elements at seafloor
10:53:32 DEBUG opendrift.models.oceandrift:572: 187 elements penetrated seafloor, lifting up
10:53:32 DEBUG opendrift.models.oceandrift:590: 18 elements reached seafloor, set to bottom
10:53:32 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
10:53:32 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
10:53:32 DEBUG opendrift.models.oceandrift:572: 187 elements penetrated seafloor, lifting up
10:53:32 DEBUG opendrift.models.oceandrift:590: 18 elements reached seafloor, set to bottom
10:53:32 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
10:53:32 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
10:53:32 DEBUG opendrift.models.oceandrift:572: 181 elements penetrated seafloor, lifting up
10:53:32 DEBUG opendrift.models.oceandrift:590: 20 elements reached seafloor, set to bottom
10:53:32 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
10:53:32 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
10:53:32 DEBUG opendrift.models.oceandrift:572: 188 elements penetrated seafloor, lifting up
10:53:32 DEBUG opendrift.models.oceandrift:590: 13 elements reached seafloor, set to bottom
10:53:32 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
10:53:32 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
10:53:32 DEBUG opendrift.models.oceandrift:572: 184 elements penetrated seafloor, lifting up
10:53:32 DEBUG opendrift.models.oceandrift:590: 16 elements reached seafloor, set to bottom
10:53:32 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
10:53:32 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
10:53:32 DEBUG opendrift.models.oceandrift:572: 176 elements penetrated seafloor, lifting up
10:53:32 DEBUG opendrift.models.oceandrift:590: 15 elements reached seafloor, set to bottom
10:53:32 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
10:53:32 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
10:53:32 DEBUG opendrift.models.oceandrift:572: 188 elements penetrated seafloor, lifting up
10:53:32 DEBUG opendrift.models.oceandrift:590: 21 elements reached seafloor, set to bottom
10:53:32 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
10:53:32 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
10:53:32 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:32 DEBUG opendrift.models.basemodel:2945: 2292 active elements (0 deactivated)
10:53:32 DEBUG opendrift.models.basemodel:1658: to be seeded: 7708, already seeded 2292
10:53:32 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:32 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:32 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:32 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:32 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:32 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:32 DEBUG opendrift.models.basemodel:1253: Data needed for 2327 elements
10:53:32 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:32 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 21:00:00 (before)
2023-08-21 22:00:00 (after)
10:53:32 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 21:00:00) in space (linearNDFast)
10:53:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:32 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:32 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:32 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:32 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:32 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:32 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.7547 (max)
10:53:32 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:32 DEBUG opendrift.models.basemodel:1527: 2327 active elements
10:53:32 DEBUG opendrift.models.basemodel:1538: 59.10869475575239 <- latitude -> 59.18828961575469
10:53:32 DEBUG opendrift.models.basemodel:1543: 10.944288678939 <- longitude -> 11.024404698842876
10:53:32 DEBUG opendrift.models.basemodel:1548: -13.728529930114746 <- z -> 0.0
10:53:32 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:32 DEBUG opendrift.models.basemodel:836: Lifting 133 elements to seafloor.
10:53:32 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:32 INFO opendrift.models.basemodel:2882: 2023-08-21 21:52:19.552469 - step 67 of 216 - 2327 active elements (0 deactivated)
10:53:32 DEBUG opendrift.models.basemodel:2888: 7673 elements scheduled.
10:53:32 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:32 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:32 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:32 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:32 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:32 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:32 DEBUG opendrift.models.basemodel:1253: Data needed for 2327 elements
10:53:32 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:32 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:32 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:32 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:32 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:32 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:32 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:32 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:32 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:32 DEBUG opendrift.models.basemodel:1253: Data needed for 2327 elements
10:53:32 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:32 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 21:00:00 (before)
2023-08-21 22:00:00 (after)
10:53:33 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:33 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:33 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:33 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:33 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:33 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:33 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 24x21x5) for time after (2023-08-21 22:00:00)
10:53:33 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 21:00:00) in space (linearNDFast)
10:53:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:33 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 22:00:00) in space (linearNDFast)
10:53:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 902 elements, expanding data 1
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 902 elements, expanding data 1
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 982 elements, expanding data 1
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 982 elements, expanding data 1
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 982 elements, expanding data 1
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 982 elements, expanding data 1
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 982 elements, expanding data 1
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1576 elements, expanding data 1
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 296 elements, expanding data 2
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1576 elements, expanding data 1
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 296 elements, expanding data 2
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1576 elements, expanding data 1
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 296 elements, expanding data 2
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1576 elements, expanding data 1
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 296 elements, expanding data 2
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1576 elements, expanding data 1
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 296 elements, expanding data 2
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 902 elements, expanding data 1
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 902 elements, expanding data 1
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 902 elements, expanding data 1
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 902 elements, expanding data 1
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 902 elements, expanding data 1
10:53:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:33 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 21:00:00, weight 0.13) and
after (2023-08-21 22:00:00, weight 0.87) in time
10:53:33 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05572188387694 and -58.97560584853034 degrees.
10:53:33 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05572188387694 and -58.97560584853034 degrees.
10:53:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:33 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:33 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:33 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:33 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:33 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:33 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.664675 (min) 1.06626 (max)
10:53:33 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.89515 (min) 0.709834 (max)
10:53:33 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000281088 (min) 0.00026281 (max)
10:53:33 DEBUG opendrift.models.basemodel:1524: x_wind: -2.56218 (min) 11.9886 (max)
10:53:33 DEBUG opendrift.models.basemodel:1524: y_wind: -4.83585 (min) 7.45191 (max)
10:53:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:33 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:33 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:33 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:33 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.7547 (max)
10:53:33 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:33 DEBUG opendrift.models.basemodel:1527: 2327 active elements
10:53:33 DEBUG opendrift.models.basemodel:1538: 59.10869475575239 <- latitude -> 59.18828961575469
10:53:33 DEBUG opendrift.models.basemodel:1543: 10.944288678939 <- longitude -> 11.024404698842876
10:53:33 DEBUG opendrift.models.basemodel:1548: -13.687077522277832 <- z -> 0.0
10:53:33 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:33 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:33 DEBUG opendrift.models.physics_methods:940: min: 0.155197, mean: 4.080257, max: 10.571524
10:53:33 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.155197, mean: 4.080257, max: 10.571524
10:53:33 DEBUG opendrift.models.basemodel:813: 257 elements hit coastline, moving back to water
10:53:33 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:53:33 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:33 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:33 DEBUG opendrift.models.physics_methods:741: Advecting 37 of 2327 elements above 0.100m with wind-sheared ocean current (0.011823 m/s - 0.148410 m/s)
10:53:33 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:33 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:33 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.13828990080316542
10:53:33 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:33 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:33 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:33 DEBUG opendrift.models.oceandrift:572: 251 elements penetrated seafloor, lifting up
10:53:33 DEBUG opendrift.models.oceandrift:590: 18 elements reached seafloor, set to bottom
10:53:33 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
10:53:33 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
10:53:33 DEBUG opendrift.models.oceandrift:572: 202 elements penetrated seafloor, lifting up
10:53:33 DEBUG opendrift.models.oceandrift:590: 28 elements reached seafloor, set to bottom
10:53:33 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
10:53:33 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
10:53:33 DEBUG opendrift.models.oceandrift:572: 187 elements penetrated seafloor, lifting up
10:53:33 DEBUG opendrift.models.oceandrift:590: 22 elements reached seafloor, set to bottom
10:53:33 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
10:53:33 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
10:53:33 DEBUG opendrift.models.oceandrift:572: 197 elements penetrated seafloor, lifting up
10:53:33 DEBUG opendrift.models.oceandrift:590: 19 elements reached seafloor, set to bottom
10:53:33 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
10:53:33 DEBUG opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
10:53:33 DEBUG opendrift.models.oceandrift:572: 188 elements penetrated seafloor, lifting up
10:53:33 DEBUG opendrift.models.oceandrift:590: 26 elements reached seafloor, set to bottom
10:53:33 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
10:53:33 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
10:53:33 DEBUG opendrift.models.oceandrift:572: 179 elements penetrated seafloor, lifting up
10:53:33 DEBUG opendrift.models.oceandrift:590: 17 elements reached seafloor, set to bottom
10:53:33 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
10:53:33 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
10:53:33 DEBUG opendrift.models.oceandrift:572: 187 elements penetrated seafloor, lifting up
10:53:33 DEBUG opendrift.models.oceandrift:590: 31 elements reached seafloor, set to bottom
10:53:33 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
10:53:33 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
10:53:33 DEBUG opendrift.models.oceandrift:572: 187 elements penetrated seafloor, lifting up
10:53:33 DEBUG opendrift.models.oceandrift:590: 16 elements reached seafloor, set to bottom
10:53:33 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
10:53:33 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
10:53:33 DEBUG opendrift.models.oceandrift:572: 157 elements penetrated seafloor, lifting up
10:53:33 DEBUG opendrift.models.oceandrift:590: 22 elements reached seafloor, set to bottom
10:53:33 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
10:53:33 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
10:53:33 DEBUG opendrift.models.oceandrift:572: 180 elements penetrated seafloor, lifting up
10:53:33 DEBUG opendrift.models.oceandrift:590: 24 elements reached seafloor, set to bottom
10:53:33 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
10:53:33 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
10:53:33 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:33 DEBUG opendrift.models.basemodel:2945: 2327 active elements (0 deactivated)
10:53:33 DEBUG opendrift.models.basemodel:1658: to be seeded: 7673, already seeded 2327
10:53:33 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:53:33 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:33 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:33 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:33 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:33 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:33 DEBUG opendrift.models.basemodel:1253: Data needed for 2361 elements
10:53:33 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:33 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 22:00:00 (before)
2023-08-21 23:00:00 (after)
10:53:33 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 22:00:00) in space (linearNDFast)
10:53:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:33 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:33 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:33 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:33 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:33 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.7787 (max)
10:53:33 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:33 DEBUG opendrift.models.basemodel:1527: 2361 active elements
10:53:33 DEBUG opendrift.models.basemodel:1538: 59.11006999118096 <- latitude -> 59.18912065767553
10:53:33 DEBUG opendrift.models.basemodel:1543: 10.942800917271171 <- longitude -> 11.024118863106871
10:53:33 DEBUG opendrift.models.basemodel:1548: -14.319361568869848 <- z -> 0.0
10:53:33 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:33 DEBUG opendrift.models.basemodel:836: Lifting 149 elements to seafloor.
10:53:33 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:33 INFO opendrift.models.basemodel:2882: 2023-08-21 22:02:19.552469 - step 68 of 216 - 2361 active elements (0 deactivated)
10:53:33 DEBUG opendrift.models.basemodel:2888: 7639 elements scheduled.
10:53:33 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:33 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:33 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:33 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:33 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:33 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:33 DEBUG opendrift.models.basemodel:1253: Data needed for 2361 elements
10:53:33 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:33 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:33 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:33 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:33 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:33 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:33 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:33 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:33 DEBUG opendrift.models.basemodel:1253: Data needed for 2361 elements
10:53:33 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:33 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 22:00:00 (before)
2023-08-21 23:00:00 (after)
10:53:34 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:34 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:34 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:34 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:34 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:34 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:34 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 24x20x5) for time after (2023-08-21 23:00:00)
10:53:34 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 22:00:00) in space (linearNDFast)
10:53:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:34 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 23:00:00) in space (linearNDFast)
10:53:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 918 elements, expanding data 1
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 918 elements, expanding data 1
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1005 elements, expanding data 1
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 96 elements, expanding data 2
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1593 elements, expanding data 1
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 285 elements, expanding data 2
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1593 elements, expanding data 1
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 285 elements, expanding data 2
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1593 elements, expanding data 1
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 285 elements, expanding data 2
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1593 elements, expanding data 1
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 285 elements, expanding data 2
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1593 elements, expanding data 1
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 285 elements, expanding data 2
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 918 elements, expanding data 1
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 918 elements, expanding data 1
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 918 elements, expanding data 1
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 918 elements, expanding data 1
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 918 elements, expanding data 1
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 2
10:53:34 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 22:00:00, weight 0.96) and
after (2023-08-21 23:00:00, weight 0.04) in time
10:53:34 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05720964305094 and -58.97589168084507 degrees.
10:53:34 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05720964305094 and -58.97589168084507 degrees.
10:53:34 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:34 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:34 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:34 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:34 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:34 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:34 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.668187 (min) 0.967997 (max)
10:53:34 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.01161 (min) 0.657278 (max)
10:53:34 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.00032188 (min) 0.000294196 (max)
10:53:34 DEBUG opendrift.models.basemodel:1524: x_wind: -3.24236 (min) 11.0996 (max)
10:53:34 DEBUG opendrift.models.basemodel:1524: y_wind: -5.84056 (min) 8.16425 (max)
10:53:34 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:34 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:34 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:34 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:34 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:34 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:34 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:34 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.7787 (max)
10:53:34 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:34 DEBUG opendrift.models.basemodel:1527: 2361 active elements
10:53:34 DEBUG opendrift.models.basemodel:1538: 59.11006999118096 <- latitude -> 59.18912065767553
10:53:34 DEBUG opendrift.models.basemodel:1543: 10.942800917271171 <- longitude -> 11.024118863106871
10:53:34 DEBUG opendrift.models.basemodel:1548: -14.319361568869848 <- z -> 0.0
10:53:34 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:34 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:34 DEBUG opendrift.models.physics_methods:940: min: 0.045037, mean: 3.926653, max: 9.503468
10:53:34 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.045037, mean: 3.926653, max: 9.503468
10:53:34 DEBUG opendrift.models.basemodel:813: 237 elements hit coastline, moving back to water
10:53:34 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
10:53:34 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:34 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:34 DEBUG opendrift.models.physics_methods:741: Advecting 36 of 2361 elements above 0.100m with wind-sheared ocean current (0.009320 m/s - 0.145029 m/s)
10:53:34 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:34 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:34 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.11175896933086395
10:53:34 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:34 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:34 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:34 DEBUG opendrift.models.oceandrift:572: 291 elements penetrated seafloor, lifting up
10:53:34 DEBUG opendrift.models.oceandrift:590: 35 elements reached seafloor, set to bottom
10:53:34 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
10:53:34 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
10:53:34 DEBUG opendrift.models.oceandrift:572: 199 elements penetrated seafloor, lifting up
10:53:34 DEBUG opendrift.models.oceandrift:590: 23 elements reached seafloor, set to bottom
10:53:34 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
10:53:34 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
10:53:34 DEBUG opendrift.models.oceandrift:572: 206 elements penetrated seafloor, lifting up
10:53:34 DEBUG opendrift.models.oceandrift:590: 23 elements reached seafloor, set to bottom
10:53:34 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
10:53:34 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
10:53:34 DEBUG opendrift.models.oceandrift:572: 185 elements penetrated seafloor, lifting up
10:53:34 DEBUG opendrift.models.oceandrift:590: 20 elements reached seafloor, set to bottom
10:53:34 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
10:53:34 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
10:53:34 DEBUG opendrift.models.oceandrift:572: 166 elements penetrated seafloor, lifting up
10:53:34 DEBUG opendrift.models.oceandrift:590: 22 elements reached seafloor, set to bottom
10:53:34 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
10:53:34 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
10:53:34 DEBUG opendrift.models.oceandrift:572: 158 elements penetrated seafloor, lifting up
10:53:34 DEBUG opendrift.models.oceandrift:590: 18 elements reached seafloor, set to bottom
10:53:34 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
10:53:34 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
10:53:34 DEBUG opendrift.models.oceandrift:572: 170 elements penetrated seafloor, lifting up
10:53:34 DEBUG opendrift.models.oceandrift:590: 16 elements reached seafloor, set to bottom
10:53:34 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
10:53:34 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
10:53:34 DEBUG opendrift.models.oceandrift:572: 195 elements penetrated seafloor, lifting up
10:53:34 DEBUG opendrift.models.oceandrift:590: 29 elements reached seafloor, set to bottom
10:53:34 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
10:53:34 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
10:53:34 DEBUG opendrift.models.oceandrift:572: 163 elements penetrated seafloor, lifting up
10:53:34 DEBUG opendrift.models.oceandrift:590: 19 elements reached seafloor, set to bottom
10:53:34 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
10:53:34 DEBUG opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
10:53:34 DEBUG opendrift.models.oceandrift:572: 165 elements penetrated seafloor, lifting up
10:53:34 DEBUG opendrift.models.oceandrift:590: 18 elements reached seafloor, set to bottom
10:53:34 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
10:53:34 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
10:53:34 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:34 DEBUG opendrift.models.basemodel:2945: 2361 active elements (0 deactivated)
10:53:34 DEBUG opendrift.models.basemodel:1658: to be seeded: 7639, already seeded 2361
10:53:34 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:34 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:34 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:34 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:34 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:34 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:34 DEBUG opendrift.models.basemodel:1253: Data needed for 2396 elements
10:53:34 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:34 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 22:00:00 (before)
2023-08-21 23:00:00 (after)
10:53:34 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 22:00:00) in space (linearNDFast)
10:53:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:34 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:34 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:34 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:34 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:34 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:34 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.6926 (max)
10:53:34 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:34 DEBUG opendrift.models.basemodel:1527: 2396 active elements
10:53:34 DEBUG opendrift.models.basemodel:1538: 59.108401174461186 <- latitude -> 59.190573233189426
10:53:34 DEBUG opendrift.models.basemodel:1543: 10.942173295448816 <- longitude -> 11.025223302881592
10:53:34 DEBUG opendrift.models.basemodel:1548: -13.971505393981934 <- z -> 0.0
10:53:34 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:34 DEBUG opendrift.models.basemodel:836: Lifting 148 elements to seafloor.
10:53:34 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:34 INFO opendrift.models.basemodel:2882: 2023-08-21 22:12:19.552469 - step 69 of 216 - 2396 active elements (0 deactivated)
10:53:34 DEBUG opendrift.models.basemodel:2888: 7604 elements scheduled.
10:53:34 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:34 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:34 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:34 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:34 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:34 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:34 DEBUG opendrift.models.basemodel:1253: Data needed for 2396 elements
10:53:34 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:34 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:34 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:34 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:34 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:34 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:34 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:34 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:34 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:34 DEBUG opendrift.models.basemodel:1253: Data needed for 2396 elements
10:53:34 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:34 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 22:00:00 (before)
2023-08-21 23:00:00 (after)
10:53:35 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:35 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:35 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:35 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:35 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:35 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:35 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x21x5) for time after (2023-08-21 23:00:00)
10:53:35 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 22:00:00) in space (linearNDFast)
10:53:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:35 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 23:00:00) in space (linearNDFast)
10:53:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 950 elements, expanding data 1
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 950 elements, expanding data 1
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1040 elements, expanding data 1
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 2
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1040 elements, expanding data 1
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 2
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1040 elements, expanding data 1
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 2
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1040 elements, expanding data 1
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 2
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1040 elements, expanding data 1
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 2
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1630 elements, expanding data 1
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 316 elements, expanding data 2
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1630 elements, expanding data 1
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 316 elements, expanding data 2
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1630 elements, expanding data 1
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 316 elements, expanding data 2
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1630 elements, expanding data 1
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 316 elements, expanding data 2
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1630 elements, expanding data 1
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 316 elements, expanding data 2
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 950 elements, expanding data 1
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 950 elements, expanding data 1
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 950 elements, expanding data 1
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 950 elements, expanding data 1
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 950 elements, expanding data 1
10:53:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:53:35 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 22:00:00, weight 0.79) and
after (2023-08-21 23:00:00, weight 0.21) in time
10:53:35 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0578372677802 and -58.974787245528205 degrees.
10:53:35 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0578372677802 and -58.974787245528205 degrees.
10:53:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:35 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:35 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:35 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:35 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:35 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:35 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.833096 (min) 1.06235 (max)
10:53:35 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.00847 (min) 0.742535 (max)
10:53:35 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.0004155 (min) 0.000242798 (max)
10:53:35 DEBUG opendrift.models.basemodel:1524: x_wind: -3.33558 (min) 10.0401 (max)
10:53:35 DEBUG opendrift.models.basemodel:1524: y_wind: -5.05494 (min) 9.0546 (max)
10:53:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:35 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:35 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:35 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:35 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.6926 (max)
10:53:35 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:35 DEBUG opendrift.models.basemodel:1527: 2396 active elements
10:53:35 DEBUG opendrift.models.basemodel:1538: 59.108401174461186 <- latitude -> 59.190573233189426
10:53:35 DEBUG opendrift.models.basemodel:1543: 10.942173295448816 <- longitude -> 11.025223302881592
10:53:35 DEBUG opendrift.models.basemodel:1548: -13.971505393981934 <- z -> 0.0
10:53:35 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:35 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:35 DEBUG opendrift.models.physics_methods:940: min: 0.101786, mean: 3.805356, max: 9.735924
10:53:35 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.101786, mean: 3.805356, max: 9.735924
10:53:35 DEBUG opendrift.models.basemodel:813: 221 elements hit coastline, moving back to water
10:53:35 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:53:35 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:35 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:35 DEBUG opendrift.models.physics_methods:741: Advecting 38 of 2396 elements above 0.100m with wind-sheared ocean current (0.007886 m/s - 0.169346 m/s)
10:53:35 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:35 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:35 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.11729294877393721
10:53:35 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:35 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:35 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:35 DEBUG opendrift.models.oceandrift:572: 269 elements penetrated seafloor, lifting up
10:53:35 DEBUG opendrift.models.oceandrift:590: 16 elements reached seafloor, set to bottom
10:53:35 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
10:53:35 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
10:53:35 DEBUG opendrift.models.oceandrift:572: 198 elements penetrated seafloor, lifting up
10:53:35 DEBUG opendrift.models.oceandrift:590: 18 elements reached seafloor, set to bottom
10:53:35 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
10:53:35 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
10:53:35 DEBUG opendrift.models.oceandrift:572: 186 elements penetrated seafloor, lifting up
10:53:35 DEBUG opendrift.models.oceandrift:590: 20 elements reached seafloor, set to bottom
10:53:35 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
10:53:35 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
10:53:35 DEBUG opendrift.models.oceandrift:572: 188 elements penetrated seafloor, lifting up
10:53:35 DEBUG opendrift.models.oceandrift:590: 25 elements reached seafloor, set to bottom
10:53:35 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
10:53:35 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
10:53:35 DEBUG opendrift.models.oceandrift:572: 201 elements penetrated seafloor, lifting up
10:53:35 DEBUG opendrift.models.oceandrift:590: 21 elements reached seafloor, set to bottom
10:53:35 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
10:53:35 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
10:53:35 DEBUG opendrift.models.oceandrift:572: 204 elements penetrated seafloor, lifting up
10:53:35 DEBUG opendrift.models.oceandrift:590: 16 elements reached seafloor, set to bottom
10:53:35 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
10:53:35 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
10:53:35 DEBUG opendrift.models.oceandrift:572: 197 elements penetrated seafloor, lifting up
10:53:35 DEBUG opendrift.models.oceandrift:590: 20 elements reached seafloor, set to bottom
10:53:35 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
10:53:35 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
10:53:35 DEBUG opendrift.models.oceandrift:572: 172 elements penetrated seafloor, lifting up
10:53:35 DEBUG opendrift.models.oceandrift:590: 22 elements reached seafloor, set to bottom
10:53:35 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
10:53:35 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
10:53:35 DEBUG opendrift.models.oceandrift:572: 169 elements penetrated seafloor, lifting up
10:53:35 DEBUG opendrift.models.oceandrift:590: 17 elements reached seafloor, set to bottom
10:53:35 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
10:53:35 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
10:53:35 DEBUG opendrift.models.oceandrift:572: 149 elements penetrated seafloor, lifting up
10:53:35 DEBUG opendrift.models.oceandrift:590: 14 elements reached seafloor, set to bottom
10:53:35 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
10:53:35 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
10:53:35 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:35 DEBUG opendrift.models.basemodel:2945: 2396 active elements (0 deactivated)
10:53:35 DEBUG opendrift.models.basemodel:1658: to be seeded: 7604, already seeded 2396
10:53:35 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:35 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:35 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:35 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:35 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:35 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:35 DEBUG opendrift.models.basemodel:1253: Data needed for 2431 elements
10:53:35 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:35 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 22:00:00 (before)
2023-08-21 23:00:00 (after)
10:53:35 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 22:00:00) in space (linearNDFast)
10:53:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:35 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:35 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:35 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:35 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:35 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.8072 (max)
10:53:35 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:35 DEBUG opendrift.models.basemodel:1527: 2431 active elements
10:53:35 DEBUG opendrift.models.basemodel:1538: 59.107732636000975 <- latitude -> 59.188051233861906
10:53:35 DEBUG opendrift.models.basemodel:1543: 10.941456883771346 <- longitude -> 11.026594956456659
10:53:35 DEBUG opendrift.models.basemodel:1548: -13.965196059063286 <- z -> 0.0
10:53:35 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:35 DEBUG opendrift.models.basemodel:836: Lifting 136 elements to seafloor.
10:53:35 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:35 INFO opendrift.models.basemodel:2882: 2023-08-21 22:22:19.552469 - step 70 of 216 - 2431 active elements (0 deactivated)
10:53:35 DEBUG opendrift.models.basemodel:2888: 7569 elements scheduled.
10:53:35 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:35 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:35 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:35 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:35 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:35 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:35 DEBUG opendrift.models.basemodel:1253: Data needed for 2431 elements
10:53:35 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:35 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:35 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:35 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:35 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:35 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:35 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:35 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:35 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:35 DEBUG opendrift.models.basemodel:1253: Data needed for 2431 elements
10:53:35 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:35 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 22:00:00 (before)
2023-08-21 23:00:00 (after)
10:53:36 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:36 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:36 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:36 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:36 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:36 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:36 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 24x21x5) for time after (2023-08-21 23:00:00)
10:53:36 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 22:00:00) in space (linearNDFast)
10:53:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:36 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 23:00:00) in space (linearNDFast)
10:53:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 975 elements, expanding data 1
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 975 elements, expanding data 1
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1066 elements, expanding data 1
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 2
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1066 elements, expanding data 1
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 2
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1066 elements, expanding data 1
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 2
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1066 elements, expanding data 1
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 2
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1066 elements, expanding data 1
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 103 elements, expanding data 2
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1649 elements, expanding data 1
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 2
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1649 elements, expanding data 1
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 2
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1649 elements, expanding data 1
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 2
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1649 elements, expanding data 1
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 2
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1649 elements, expanding data 1
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 2
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 975 elements, expanding data 1
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 975 elements, expanding data 1
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 975 elements, expanding data 1
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 975 elements, expanding data 1
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 975 elements, expanding data 1
10:53:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:36 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 22:00:00, weight 0.63) and
after (2023-08-21 23:00:00, weight 0.37) in time
10:53:36 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05855368452735 and -58.97341558647038 degrees.
10:53:36 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05855368452735 and -58.97341558647038 degrees.
10:53:36 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:36 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:36 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:36 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:36 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:36 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:36 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.772653 (min) 0.973263 (max)
10:53:36 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.969109 (min) 0.775139 (max)
10:53:36 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000270952 (min) 0.000246244 (max)
10:53:36 DEBUG opendrift.models.basemodel:1524: x_wind: -5.52944 (min) 12.0239 (max)
10:53:36 DEBUG opendrift.models.basemodel:1524: y_wind: -7.18471 (min) 9.22274 (max)
10:53:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:36 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:36 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:36 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:36 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.8072 (max)
10:53:36 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:36 DEBUG opendrift.models.basemodel:1527: 2431 active elements
10:53:36 DEBUG opendrift.models.basemodel:1538: 59.107732636000975 <- latitude -> 59.188051233861906
10:53:36 DEBUG opendrift.models.basemodel:1543: 10.941456883771346 <- longitude -> 11.026594956456659
10:53:36 DEBUG opendrift.models.basemodel:1548: -13.856339454650879 <- z -> 0.0
10:53:36 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:36 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:36 DEBUG opendrift.models.physics_methods:940: min: 0.051319, mean: 3.706247, max: 10.782157
10:53:36 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.051319, mean: 3.706247, max: 10.782157
10:53:36 DEBUG opendrift.models.basemodel:813: 243 elements hit coastline, moving back to water
10:53:36 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:53:36 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:36 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:36 DEBUG opendrift.models.physics_methods:741: Advecting 36 of 2431 elements above 0.100m with wind-sheared ocean current (0.010062 m/s - 0.158788 m/s)
10:53:36 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:36 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:36 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.14385535977561947
10:53:36 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:36 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:36 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:36 DEBUG opendrift.models.oceandrift:572: 236 elements penetrated seafloor, lifting up
10:53:36 DEBUG opendrift.models.oceandrift:590: 20 elements reached seafloor, set to bottom
10:53:36 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
10:53:36 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
10:53:36 DEBUG opendrift.models.oceandrift:572: 214 elements penetrated seafloor, lifting up
10:53:36 DEBUG opendrift.models.oceandrift:590: 26 elements reached seafloor, set to bottom
10:53:36 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
10:53:36 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
10:53:36 DEBUG opendrift.models.oceandrift:572: 209 elements penetrated seafloor, lifting up
10:53:36 DEBUG opendrift.models.oceandrift:590: 17 elements reached seafloor, set to bottom
10:53:36 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
10:53:36 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
10:53:36 DEBUG opendrift.models.oceandrift:572: 205 elements penetrated seafloor, lifting up
10:53:36 DEBUG opendrift.models.oceandrift:590: 23 elements reached seafloor, set to bottom
10:53:36 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
10:53:36 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
10:53:36 DEBUG opendrift.models.oceandrift:572: 178 elements penetrated seafloor, lifting up
10:53:36 DEBUG opendrift.models.oceandrift:590: 31 elements reached seafloor, set to bottom
10:53:36 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
10:53:36 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
10:53:36 DEBUG opendrift.models.oceandrift:572: 180 elements penetrated seafloor, lifting up
10:53:36 DEBUG opendrift.models.oceandrift:590: 25 elements reached seafloor, set to bottom
10:53:36 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
10:53:36 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
10:53:36 DEBUG opendrift.models.oceandrift:572: 169 elements penetrated seafloor, lifting up
10:53:36 DEBUG opendrift.models.oceandrift:590: 16 elements reached seafloor, set to bottom
10:53:36 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
10:53:36 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
10:53:36 DEBUG opendrift.models.oceandrift:572: 164 elements penetrated seafloor, lifting up
10:53:36 DEBUG opendrift.models.oceandrift:590: 24 elements reached seafloor, set to bottom
10:53:36 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
10:53:36 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
10:53:36 DEBUG opendrift.models.oceandrift:572: 163 elements penetrated seafloor, lifting up
10:53:36 DEBUG opendrift.models.oceandrift:590: 16 elements reached seafloor, set to bottom
10:53:36 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
10:53:36 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
10:53:36 DEBUG opendrift.models.oceandrift:572: 156 elements penetrated seafloor, lifting up
10:53:36 DEBUG opendrift.models.oceandrift:590: 19 elements reached seafloor, set to bottom
10:53:36 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
10:53:36 DEBUG opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
10:53:36 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:36 DEBUG opendrift.models.basemodel:2945: 2431 active elements (0 deactivated)
10:53:36 DEBUG opendrift.models.basemodel:1658: to be seeded: 7569, already seeded 2431
10:53:36 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:36 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:36 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:36 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:36 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:36 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:36 DEBUG opendrift.models.basemodel:1253: Data needed for 2466 elements
10:53:36 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:36 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 22:00:00 (before)
2023-08-21 23:00:00 (after)
10:53:36 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 22:00:00) in space (linearNDFast)
10:53:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:36 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:36 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:36 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:36 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:36 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:36 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.683 (max)
10:53:36 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:36 DEBUG opendrift.models.basemodel:1527: 2466 active elements
10:53:36 DEBUG opendrift.models.basemodel:1538: 59.10790805472431 <- latitude -> 59.18937409251415
10:53:36 DEBUG opendrift.models.basemodel:1543: 10.937664249863612 <- longitude -> 11.025575598133278
10:53:36 DEBUG opendrift.models.basemodel:1548: -14.119837036132813 <- z -> 0.0
10:53:36 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:36 DEBUG opendrift.models.basemodel:836: Lifting 146 elements to seafloor.
10:53:36 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:36 INFO opendrift.models.basemodel:2882: 2023-08-21 22:32:19.552469 - step 71 of 216 - 2466 active elements (0 deactivated)
10:53:36 DEBUG opendrift.models.basemodel:2888: 7534 elements scheduled.
10:53:36 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:36 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:36 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:36 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:36 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:36 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:36 DEBUG opendrift.models.basemodel:1253: Data needed for 2466 elements
10:53:36 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:36 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:36 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:36 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:36 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:36 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:36 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:36 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:36 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:36 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:36 DEBUG opendrift.models.basemodel:1253: Data needed for 2466 elements
10:53:36 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:36 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 22:00:00 (before)
2023-08-21 23:00:00 (after)
10:53:37 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:37 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:37 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:37 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:37 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:37 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:37 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 24x21x5) for time after (2023-08-21 23:00:00)
10:53:37 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 22:00:00) in space (linearNDFast)
10:53:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:37 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 23:00:00) in space (linearNDFast)
10:53:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 995 elements, expanding data 1
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 995 elements, expanding data 1
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1090 elements, expanding data 1
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 106 elements, expanding data 2
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1090 elements, expanding data 1
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 106 elements, expanding data 2
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1090 elements, expanding data 1
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 106 elements, expanding data 2
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1090 elements, expanding data 1
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 106 elements, expanding data 2
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1090 elements, expanding data 1
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 106 elements, expanding data 2
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1663 elements, expanding data 1
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 340 elements, expanding data 2
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1663 elements, expanding data 1
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 340 elements, expanding data 2
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1663 elements, expanding data 1
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 340 elements, expanding data 2
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1663 elements, expanding data 1
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 340 elements, expanding data 2
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1663 elements, expanding data 1
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 340 elements, expanding data 2
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 995 elements, expanding data 1
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 995 elements, expanding data 1
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 995 elements, expanding data 1
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 995 elements, expanding data 1
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 995 elements, expanding data 1
10:53:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 2
10:53:37 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 22:00:00, weight 0.46) and
after (2023-08-21 23:00:00, weight 0.54) in time
10:53:37 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06234631579552 and -58.97443495012259 degrees.
10:53:37 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06234631579552 and -58.97443495012259 degrees.
10:53:37 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:37 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:37 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:37 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:37 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:37 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:37 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.751312 (min) 1.12866 (max)
10:53:37 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.909744 (min) 0.860486 (max)
10:53:37 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.00027614 (min) 0.000239855 (max)
10:53:37 DEBUG opendrift.models.basemodel:1524: x_wind: -2.89709 (min) 10.8529 (max)
10:53:37 DEBUG opendrift.models.basemodel:1524: y_wind: -7.20584 (min) 7.51436 (max)
10:53:37 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:37 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:37 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:37 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:37 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:37 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:37 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:37 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.683 (max)
10:53:37 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:37 DEBUG opendrift.models.basemodel:1527: 2466 active elements
10:53:37 DEBUG opendrift.models.basemodel:1538: 59.10790805472431 <- latitude -> 59.18937409251415
10:53:37 DEBUG opendrift.models.basemodel:1543: 10.937664249863612 <- longitude -> 11.025575598133278
10:53:37 DEBUG opendrift.models.basemodel:1548: -14.036540031433105 <- z -> 0.0
10:53:37 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:37 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:37 DEBUG opendrift.models.physics_methods:940: min: 0.058758, mean: 3.559150, max: 9.503687
10:53:37 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.058758, mean: 3.559150, max: 9.503687
10:53:37 DEBUG opendrift.models.basemodel:813: 249 elements hit coastline, moving back to water
10:53:37 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:53:37 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:37 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:37 DEBUG opendrift.models.physics_methods:741: Advecting 37 of 2466 elements above 0.100m with wind-sheared ocean current (0.007390 m/s - 0.136670 m/s)
10:53:37 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:37 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:37 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.11176415118272781
10:53:37 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:37 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:37 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:37 DEBUG opendrift.models.oceandrift:572: 299 elements penetrated seafloor, lifting up
10:53:37 DEBUG opendrift.models.oceandrift:590: 36 elements reached seafloor, set to bottom
10:53:37 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
10:53:37 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
10:53:37 DEBUG opendrift.models.oceandrift:572: 203 elements penetrated seafloor, lifting up
10:53:37 DEBUG opendrift.models.oceandrift:590: 40 elements reached seafloor, set to bottom
10:53:37 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
10:53:37 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
10:53:37 DEBUG opendrift.models.oceandrift:572: 212 elements penetrated seafloor, lifting up
10:53:37 DEBUG opendrift.models.oceandrift:590: 34 elements reached seafloor, set to bottom
10:53:37 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
10:53:37 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
10:53:37 DEBUG opendrift.models.oceandrift:572: 201 elements penetrated seafloor, lifting up
10:53:37 DEBUG opendrift.models.oceandrift:590: 24 elements reached seafloor, set to bottom
10:53:37 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
10:53:37 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
10:53:37 DEBUG opendrift.models.oceandrift:572: 197 elements penetrated seafloor, lifting up
10:53:37 DEBUG opendrift.models.oceandrift:590: 20 elements reached seafloor, set to bottom
10:53:37 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
10:53:37 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
10:53:37 DEBUG opendrift.models.oceandrift:572: 169 elements penetrated seafloor, lifting up
10:53:37 DEBUG opendrift.models.oceandrift:590: 16 elements reached seafloor, set to bottom
10:53:37 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
10:53:37 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
10:53:37 DEBUG opendrift.models.oceandrift:572: 186 elements penetrated seafloor, lifting up
10:53:37 DEBUG opendrift.models.oceandrift:590: 20 elements reached seafloor, set to bottom
10:53:37 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
10:53:37 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
10:53:37 DEBUG opendrift.models.oceandrift:572: 165 elements penetrated seafloor, lifting up
10:53:37 DEBUG opendrift.models.oceandrift:590: 25 elements reached seafloor, set to bottom
10:53:37 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
10:53:37 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
10:53:37 DEBUG opendrift.models.oceandrift:572: 165 elements penetrated seafloor, lifting up
10:53:37 DEBUG opendrift.models.oceandrift:590: 24 elements reached seafloor, set to bottom
10:53:37 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
10:53:37 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
10:53:37 DEBUG opendrift.models.oceandrift:572: 146 elements penetrated seafloor, lifting up
10:53:37 DEBUG opendrift.models.oceandrift:590: 13 elements reached seafloor, set to bottom
10:53:37 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
10:53:37 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
10:53:37 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:37 DEBUG opendrift.models.basemodel:2945: 2466 active elements (0 deactivated)
10:53:37 DEBUG opendrift.models.basemodel:1658: to be seeded: 7534, already seeded 2466
10:53:37 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:53:37 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:37 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:37 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:37 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:37 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:37 DEBUG opendrift.models.basemodel:1253: Data needed for 2500 elements
10:53:37 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:37 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 22:00:00 (before)
2023-08-21 23:00:00 (after)
10:53:37 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 22:00:00) in space (linearNDFast)
10:53:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:37 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:37 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:37 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:37 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:37 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:37 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.745 (max)
10:53:37 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:37 DEBUG opendrift.models.basemodel:1527: 2500 active elements
10:53:37 DEBUG opendrift.models.basemodel:1538: 59.111035404572334 <- latitude -> 59.18828491944805
10:53:37 DEBUG opendrift.models.basemodel:1543: 10.93563724020667 <- longitude -> 11.025127957196752
10:53:37 DEBUG opendrift.models.basemodel:1548: -13.85487865447998 <- z -> 0.0
10:53:37 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:37 DEBUG opendrift.models.basemodel:836: Lifting 167 elements to seafloor.
10:53:37 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:37 INFO opendrift.models.basemodel:2882: 2023-08-21 22:42:19.552469 - step 72 of 216 - 2500 active elements (0 deactivated)
10:53:37 DEBUG opendrift.models.basemodel:2888: 7500 elements scheduled.
10:53:37 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:37 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:37 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:37 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:37 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:37 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:37 DEBUG opendrift.models.basemodel:1253: Data needed for 2500 elements
10:53:37 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:37 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:37 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:37 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:37 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:37 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:37 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:37 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:37 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:37 DEBUG opendrift.models.basemodel:1253: Data needed for 2500 elements
10:53:37 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:37 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 22:00:00 (before)
2023-08-21 23:00:00 (after)
10:53:38 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:38 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:38 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:38 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:38 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:38 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:38 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x21x5) for time after (2023-08-21 23:00:00)
10:53:38 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 22:00:00) in space (linearNDFast)
10:53:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:38 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 23:00:00) in space (linearNDFast)
10:53:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1028 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1028 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1111 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 2
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1111 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 2
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1111 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 2
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1111 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 2
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1111 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 2
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1697 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 359 elements, expanding data 2
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1697 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 359 elements, expanding data 2
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1697 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 359 elements, expanding data 2
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1697 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 359 elements, expanding data 2
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1697 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 359 elements, expanding data 2
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1028 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1028 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1028 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1028 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1028 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 2
10:53:38 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 22:00:00, weight 0.29) and
after (2023-08-21 23:00:00, weight 0.71) in time
10:53:38 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.064373314508885 and -58.97488259270554 degrees.
10:53:38 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.064373314508885 and -58.97488259270554 degrees.
10:53:38 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:38 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:38 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:38 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:38 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:38 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:38 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.664864 (min) 1.02447 (max)
10:53:38 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.928655 (min) 0.886621 (max)
10:53:38 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000251633 (min) 0.00030021 (max)
10:53:38 DEBUG opendrift.models.basemodel:1524: x_wind: -2.74586 (min) 9.67796 (max)
10:53:38 DEBUG opendrift.models.basemodel:1524: y_wind: -5.90123 (min) 7.98013 (max)
10:53:38 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:38 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:38 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:38 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:38 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:38 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:38 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:38 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.745 (max)
10:53:38 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:38 DEBUG opendrift.models.basemodel:1527: 2500 active elements
10:53:38 DEBUG opendrift.models.basemodel:1538: 59.111035404572334 <- latitude -> 59.18828491944805
10:53:38 DEBUG opendrift.models.basemodel:1543: 10.93563724020667 <- longitude -> 11.025127957196752
10:53:38 DEBUG opendrift.models.basemodel:1548: -13.85487865447998 <- z -> 0.0
10:53:38 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:38 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:38 DEBUG opendrift.models.physics_methods:940: min: 0.029949, mean: 3.497272, max: 8.821971
10:53:38 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.029949, mean: 3.497272, max: 8.821971
10:53:38 DEBUG opendrift.models.basemodel:813: 247 elements hit coastline, moving back to water
10:53:38 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:53:38 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:38 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:38 DEBUG opendrift.models.physics_methods:741: Advecting 37 of 2500 elements above 0.100m with wind-sheared ocean current (0.003532 m/s - 0.159213 m/s)
10:53:38 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:38 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:38 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.0963057071996498
10:53:38 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:38 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:38 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:38 DEBUG opendrift.models.oceandrift:572: 251 elements penetrated seafloor, lifting up
10:53:38 DEBUG opendrift.models.oceandrift:590: 19 elements reached seafloor, set to bottom
10:53:38 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
10:53:38 DEBUG opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
10:53:38 DEBUG opendrift.models.oceandrift:572: 220 elements penetrated seafloor, lifting up
10:53:38 DEBUG opendrift.models.oceandrift:590: 15 elements reached seafloor, set to bottom
10:53:38 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
10:53:38 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
10:53:38 DEBUG opendrift.models.oceandrift:572: 221 elements penetrated seafloor, lifting up
10:53:38 DEBUG opendrift.models.oceandrift:590: 27 elements reached seafloor, set to bottom
10:53:38 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
10:53:38 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
10:53:38 DEBUG opendrift.models.oceandrift:572: 202 elements penetrated seafloor, lifting up
10:53:38 DEBUG opendrift.models.oceandrift:590: 25 elements reached seafloor, set to bottom
10:53:38 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
10:53:38 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
10:53:38 DEBUG opendrift.models.oceandrift:572: 190 elements penetrated seafloor, lifting up
10:53:38 DEBUG opendrift.models.oceandrift:590: 26 elements reached seafloor, set to bottom
10:53:38 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
10:53:38 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
10:53:38 DEBUG opendrift.models.oceandrift:572: 188 elements penetrated seafloor, lifting up
10:53:38 DEBUG opendrift.models.oceandrift:590: 22 elements reached seafloor, set to bottom
10:53:38 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
10:53:38 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
10:53:38 DEBUG opendrift.models.oceandrift:572: 184 elements penetrated seafloor, lifting up
10:53:38 DEBUG opendrift.models.oceandrift:590: 20 elements reached seafloor, set to bottom
10:53:38 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
10:53:38 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
10:53:38 DEBUG opendrift.models.oceandrift:572: 174 elements penetrated seafloor, lifting up
10:53:38 DEBUG opendrift.models.oceandrift:590: 22 elements reached seafloor, set to bottom
10:53:38 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
10:53:38 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
10:53:38 DEBUG opendrift.models.oceandrift:572: 181 elements penetrated seafloor, lifting up
10:53:38 DEBUG opendrift.models.oceandrift:590: 11 elements reached seafloor, set to bottom
10:53:38 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:53:38 DEBUG opendrift.models.sedimentdrift:112: Settling 11 elements at seafloor
10:53:38 DEBUG opendrift.models.oceandrift:572: 181 elements penetrated seafloor, lifting up
10:53:38 DEBUG opendrift.models.oceandrift:590: 13 elements reached seafloor, set to bottom
10:53:38 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
10:53:38 DEBUG opendrift.models.sedimentdrift:112: Settling 13 elements at seafloor
10:53:38 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:38 DEBUG opendrift.models.basemodel:2945: 2500 active elements (0 deactivated)
10:53:38 DEBUG opendrift.models.basemodel:1658: to be seeded: 7500, already seeded 2500
10:53:38 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:38 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:38 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:38 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:38 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:38 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:38 DEBUG opendrift.models.basemodel:1253: Data needed for 2535 elements
10:53:38 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:38 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 22:00:00 (before)
2023-08-21 23:00:00 (after)
10:53:38 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 22:00:00) in space (linearNDFast)
10:53:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:38 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:38 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:38 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:38 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:38 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:38 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.6757 (max)
10:53:38 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:38 DEBUG opendrift.models.basemodel:1527: 2535 active elements
10:53:38 DEBUG opendrift.models.basemodel:1538: 59.11005002644673 <- latitude -> 59.18828491944805
10:53:38 DEBUG opendrift.models.basemodel:1543: 10.935791995779201 <- longitude -> 11.025343703632139
10:53:38 DEBUG opendrift.models.basemodel:1548: -14.343867530822754 <- z -> 0.0
10:53:38 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:38 DEBUG opendrift.models.basemodel:836: Lifting 149 elements to seafloor.
10:53:38 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:38 INFO opendrift.models.basemodel:2882: 2023-08-21 22:52:19.552469 - step 73 of 216 - 2535 active elements (0 deactivated)
10:53:38 DEBUG opendrift.models.basemodel:2888: 7465 elements scheduled.
10:53:38 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:38 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:38 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:38 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:38 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:38 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:38 DEBUG opendrift.models.basemodel:1253: Data needed for 2535 elements
10:53:38 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:38 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:38 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:38 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:38 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:38 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:38 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:38 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:38 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:38 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:38 DEBUG opendrift.models.basemodel:1253: Data needed for 2535 elements
10:53:38 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:38 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 22:00:00 (before)
2023-08-21 23:00:00 (after)
10:53:38 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:38 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:38 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:38 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:38 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:38 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:38 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x22x5) for time after (2023-08-21 23:00:00)
10:53:38 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 22:00:00) in space (linearNDFast)
10:53:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:38 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-21 23:00:00) in space (linearNDFast)
10:53:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1044 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1044 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1126 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 131 elements, expanding data 2
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1126 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 131 elements, expanding data 2
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1126 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 131 elements, expanding data 2
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1126 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 131 elements, expanding data 2
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1126 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 131 elements, expanding data 2
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1731 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 2
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1731 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 2
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1731 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 2
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1731 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 2
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1731 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 378 elements, expanding data 2
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1044 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1044 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1044 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1044 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1044 elements, expanding data 1
10:53:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
10:53:38 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 22:00:00, weight 0.13) and
after (2023-08-21 23:00:00, weight 0.87) in time
10:53:38 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0642185742545 and -58.974666838319216 degrees.
10:53:38 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0642185742545 and -58.974666838319216 degrees.
10:53:38 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:38 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:38 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:38 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:38 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:38 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:38 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.731931 (min) 1.06032 (max)
10:53:38 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.950241 (min) 0.963548 (max)
10:53:38 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000333756 (min) 0.000287167 (max)
10:53:38 DEBUG opendrift.models.basemodel:1524: x_wind: -4.61239 (min) 9.69031 (max)
10:53:38 DEBUG opendrift.models.basemodel:1524: y_wind: -6.37997 (min) 7.68123 (max)
10:53:38 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:38 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:38 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:38 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:38 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:38 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:38 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:38 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.6757 (max)
10:53:38 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:38 DEBUG opendrift.models.basemodel:1527: 2535 active elements
10:53:38 DEBUG opendrift.models.basemodel:1538: 59.11005002644673 <- latitude -> 59.18828491944805
10:53:38 DEBUG opendrift.models.basemodel:1543: 10.935791995779201 <- longitude -> 11.025343703632139
10:53:38 DEBUG opendrift.models.basemodel:1548: -14.171689987182617 <- z -> 0.0
10:53:38 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:38 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:38 DEBUG opendrift.models.physics_methods:940: min: 0.083464, mean: 3.414422, max: 8.614160
10:53:38 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.083464, mean: 3.414422, max: 8.614160
10:53:38 DEBUG opendrift.models.basemodel:813: 259 elements hit coastline, moving back to water
10:53:38 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:53:38 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:38 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:38 DEBUG opendrift.models.physics_methods:741: Advecting 35 of 2535 elements above 0.100m with wind-sheared ocean current (0.026450 m/s - 0.173946 m/s)
10:53:38 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:38 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:38 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.0918221782890129
10:53:38 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:38 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:38 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:38 DEBUG opendrift.models.oceandrift:572: 300 elements penetrated seafloor, lifting up
10:53:38 DEBUG opendrift.models.oceandrift:590: 26 elements reached seafloor, set to bottom
10:53:38 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
10:53:38 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
10:53:38 DEBUG opendrift.models.oceandrift:572: 227 elements penetrated seafloor, lifting up
10:53:38 DEBUG opendrift.models.oceandrift:590: 27 elements reached seafloor, set to bottom
10:53:38 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
10:53:38 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
10:53:38 DEBUG opendrift.models.oceandrift:572: 224 elements penetrated seafloor, lifting up
10:53:38 DEBUG opendrift.models.oceandrift:590: 17 elements reached seafloor, set to bottom
10:53:38 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
10:53:38 DEBUG opendrift.models.sedimentdrift:112: Settling 17 elements at seafloor
10:53:38 DEBUG opendrift.models.oceandrift:572: 198 elements penetrated seafloor, lifting up
10:53:38 DEBUG opendrift.models.oceandrift:590: 32 elements reached seafloor, set to bottom
10:53:38 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
10:53:38 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
10:53:38 DEBUG opendrift.models.oceandrift:572: 194 elements penetrated seafloor, lifting up
10:53:38 DEBUG opendrift.models.oceandrift:590: 20 elements reached seafloor, set to bottom
10:53:38 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
10:53:38 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
10:53:38 DEBUG opendrift.models.oceandrift:572: 169 elements penetrated seafloor, lifting up
10:53:38 DEBUG opendrift.models.oceandrift:590: 25 elements reached seafloor, set to bottom
10:53:38 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
10:53:38 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
10:53:38 DEBUG opendrift.models.oceandrift:572: 179 elements penetrated seafloor, lifting up
10:53:38 DEBUG opendrift.models.oceandrift:590: 16 elements reached seafloor, set to bottom
10:53:38 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
10:53:38 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
10:53:38 DEBUG opendrift.models.oceandrift:572: 184 elements penetrated seafloor, lifting up
10:53:38 DEBUG opendrift.models.oceandrift:590: 24 elements reached seafloor, set to bottom
10:53:38 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
10:53:38 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
10:53:38 DEBUG opendrift.models.oceandrift:572: 192 elements penetrated seafloor, lifting up
10:53:38 DEBUG opendrift.models.oceandrift:590: 15 elements reached seafloor, set to bottom
10:53:38 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
10:53:38 DEBUG opendrift.models.sedimentdrift:112: Settling 15 elements at seafloor
10:53:38 DEBUG opendrift.models.oceandrift:572: 178 elements penetrated seafloor, lifting up
10:53:38 DEBUG opendrift.models.oceandrift:590: 33 elements reached seafloor, set to bottom
10:53:38 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
10:53:38 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
10:53:38 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:38 DEBUG opendrift.models.basemodel:2945: 2535 active elements (0 deactivated)
10:53:38 DEBUG opendrift.models.basemodel:1658: to be seeded: 7465, already seeded 2535
10:53:38 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:38 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:38 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:38 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:39 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:39 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:39 DEBUG opendrift.models.basemodel:1253: Data needed for 2570 elements
10:53:39 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:39 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 23:00:00 (before)
2023-08-22 00:00:00 (after)
10:53:39 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 23:00:00) in space (linearNDFast)
10:53:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:39 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:39 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:39 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:39 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:39 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:39 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.8332 (max)
10:53:39 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:39 DEBUG opendrift.models.basemodel:1527: 2570 active elements
10:53:39 DEBUG opendrift.models.basemodel:1538: 59.112151912613314 <- latitude -> 59.18803951799599
10:53:39 DEBUG opendrift.models.basemodel:1543: 10.93501386301941 <- longitude -> 11.024067965504715
10:53:39 DEBUG opendrift.models.basemodel:1548: -14.447216033935547 <- z -> 0.0
10:53:39 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:39 DEBUG opendrift.models.basemodel:836: Lifting 157 elements to seafloor.
10:53:39 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:39 INFO opendrift.models.basemodel:2882: 2023-08-21 23:02:19.552469 - step 74 of 216 - 2570 active elements (0 deactivated)
10:53:39 DEBUG opendrift.models.basemodel:2888: 7430 elements scheduled.
10:53:39 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:39 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:39 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:39 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:39 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:39 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:39 DEBUG opendrift.models.basemodel:1253: Data needed for 2570 elements
10:53:39 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:39 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:39 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:39 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:39 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:39 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:39 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:39 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:39 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:39 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:39 DEBUG opendrift.models.basemodel:1253: Data needed for 2570 elements
10:53:39 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:39 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 23:00:00 (before)
2023-08-22 00:00:00 (after)
10:53:40 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:40 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:40 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:40 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:40 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:40 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:40 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x21x5) for time after (2023-08-22 00:00:00)
10:53:40 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 23:00:00) in space (linearNDFast)
10:53:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:40 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 00:00:00) in space (linearNDFast)
10:53:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1044 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1044 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1141 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 128 elements, expanding data 2
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1141 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 128 elements, expanding data 2
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1141 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 128 elements, expanding data 2
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1141 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 128 elements, expanding data 2
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1141 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 128 elements, expanding data 2
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1735 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 396 elements, expanding data 2
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1735 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 396 elements, expanding data 2
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1735 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 396 elements, expanding data 2
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1735 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 396 elements, expanding data 2
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1735 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 396 elements, expanding data 2
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1044 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1044 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1044 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1044 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1044 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
10:53:40 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 23:00:00, weight 0.96) and
after (2023-08-22 00:00:00, weight 0.04) in time
10:53:40 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.064996709692764 and -58.97594257638402 degrees.
10:53:40 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.064996709692764 and -58.97594257638402 degrees.
10:53:40 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:40 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:40 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:40 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:40 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:40 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:40 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.754121 (min) 0.96097 (max)
10:53:40 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.817614 (min) 0.725183 (max)
10:53:40 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000356331 (min) 0.000249945 (max)
10:53:40 DEBUG opendrift.models.basemodel:1524: x_wind: -4.02231 (min) 10.7737 (max)
10:53:40 DEBUG opendrift.models.basemodel:1524: y_wind: -5.91188 (min) 8.40567 (max)
10:53:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:40 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:40 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:40 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:40 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.8332 (max)
10:53:40 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:40 DEBUG opendrift.models.basemodel:1527: 2570 active elements
10:53:40 DEBUG opendrift.models.basemodel:1538: 59.112151912613314 <- latitude -> 59.18803951799599
10:53:40 DEBUG opendrift.models.basemodel:1543: 10.93501386301941 <- longitude -> 11.024067965504715
10:53:40 DEBUG opendrift.models.basemodel:1548: -14.423373222351074 <- z -> 0.0
10:53:40 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:40 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:40 DEBUG opendrift.models.physics_methods:940: min: 0.041954, mean: 3.374627, max: 10.343375
10:53:40 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.041954, mean: 3.374627, max: 10.343375
10:53:40 DEBUG opendrift.models.basemodel:813: 270 elements hit coastline, moving back to water
10:53:40 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:53:40 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:40 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:40 DEBUG opendrift.models.physics_methods:741: Advecting 36 of 2570 elements above 0.100m with wind-sheared ocean current (0.003556 m/s - 0.160211 m/s)
10:53:40 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:40 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:40 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.13238544984872816
10:53:40 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:40 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:40 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:40 DEBUG opendrift.models.oceandrift:572: 262 elements penetrated seafloor, lifting up
10:53:40 DEBUG opendrift.models.oceandrift:590: 24 elements reached seafloor, set to bottom
10:53:40 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
10:53:40 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
10:53:40 DEBUG opendrift.models.oceandrift:572: 230 elements penetrated seafloor, lifting up
10:53:40 DEBUG opendrift.models.oceandrift:590: 36 elements reached seafloor, set to bottom
10:53:40 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
10:53:40 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
10:53:40 DEBUG opendrift.models.oceandrift:572: 188 elements penetrated seafloor, lifting up
10:53:40 DEBUG opendrift.models.oceandrift:590: 30 elements reached seafloor, set to bottom
10:53:40 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
10:53:40 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
10:53:40 DEBUG opendrift.models.oceandrift:572: 207 elements penetrated seafloor, lifting up
10:53:40 DEBUG opendrift.models.oceandrift:590: 24 elements reached seafloor, set to bottom
10:53:40 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
10:53:40 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
10:53:40 DEBUG opendrift.models.oceandrift:572: 190 elements penetrated seafloor, lifting up
10:53:40 DEBUG opendrift.models.oceandrift:590: 28 elements reached seafloor, set to bottom
10:53:40 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
10:53:40 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
10:53:40 DEBUG opendrift.models.oceandrift:572: 181 elements penetrated seafloor, lifting up
10:53:40 DEBUG opendrift.models.oceandrift:590: 24 elements reached seafloor, set to bottom
10:53:40 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
10:53:40 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
10:53:40 DEBUG opendrift.models.oceandrift:572: 199 elements penetrated seafloor, lifting up
10:53:40 DEBUG opendrift.models.oceandrift:590: 26 elements reached seafloor, set to bottom
10:53:40 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
10:53:40 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
10:53:40 DEBUG opendrift.models.oceandrift:572: 189 elements penetrated seafloor, lifting up
10:53:40 DEBUG opendrift.models.oceandrift:590: 27 elements reached seafloor, set to bottom
10:53:40 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
10:53:40 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
10:53:40 DEBUG opendrift.models.oceandrift:572: 171 elements penetrated seafloor, lifting up
10:53:40 DEBUG opendrift.models.oceandrift:590: 25 elements reached seafloor, set to bottom
10:53:40 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
10:53:40 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
10:53:40 DEBUG opendrift.models.oceandrift:572: 143 elements penetrated seafloor, lifting up
10:53:40 DEBUG opendrift.models.oceandrift:590: 24 elements reached seafloor, set to bottom
10:53:40 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
10:53:40 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
10:53:40 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:40 DEBUG opendrift.models.basemodel:2945: 2570 active elements (0 deactivated)
10:53:40 DEBUG opendrift.models.basemodel:1658: to be seeded: 7430, already seeded 2570
10:53:40 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:53:40 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:40 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:40 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:40 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:40 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:40 DEBUG opendrift.models.basemodel:1253: Data needed for 2604 elements
10:53:40 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:40 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 23:00:00 (before)
2023-08-22 00:00:00 (after)
10:53:40 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 23:00:00) in space (linearNDFast)
10:53:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:40 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:40 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:40 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:40 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:40 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:40 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.7928 (max)
10:53:40 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:40 DEBUG opendrift.models.basemodel:1527: 2604 active elements
10:53:40 DEBUG opendrift.models.basemodel:1538: 59.11312718473276 <- latitude -> 59.18774662409791
10:53:40 DEBUG opendrift.models.basemodel:1543: 10.937053413758557 <- longitude -> 11.025924687673225
10:53:40 DEBUG opendrift.models.basemodel:1548: -14.423372268676758 <- z -> 0.0
10:53:40 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:40 DEBUG opendrift.models.basemodel:836: Lifting 161 elements to seafloor.
10:53:40 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:40 INFO opendrift.models.basemodel:2882: 2023-08-21 23:12:19.552469 - step 75 of 216 - 2604 active elements (0 deactivated)
10:53:40 DEBUG opendrift.models.basemodel:2888: 7396 elements scheduled.
10:53:40 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:40 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:40 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:40 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:40 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:40 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:40 DEBUG opendrift.models.basemodel:1253: Data needed for 2604 elements
10:53:40 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:40 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:40 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:40 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:40 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:40 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:40 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:40 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:40 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:40 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:40 DEBUG opendrift.models.basemodel:1253: Data needed for 2604 elements
10:53:40 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:40 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 23:00:00 (before)
2023-08-22 00:00:00 (after)
10:53:40 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:40 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:40 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:40 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:40 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:40 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:40 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x21x5) for time after (2023-08-22 00:00:00)
10:53:40 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 23:00:00) in space (linearNDFast)
10:53:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:40 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 00:00:00) in space (linearNDFast)
10:53:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1055 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1055 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1147 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 136 elements, expanding data 2
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1147 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 136 elements, expanding data 2
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1147 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 136 elements, expanding data 2
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1147 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 136 elements, expanding data 2
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1147 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 136 elements, expanding data 2
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1761 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 391 elements, expanding data 2
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1761 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 391 elements, expanding data 2
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1761 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 391 elements, expanding data 2
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1761 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 391 elements, expanding data 2
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1761 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 391 elements, expanding data 2
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1055 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1055 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1055 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1055 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1055 elements, expanding data 1
10:53:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 2
10:53:40 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 23:00:00, weight 0.79) and
after (2023-08-22 00:00:00, weight 0.21) in time
10:53:40 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.062957150997576 and -58.97408586503801 degrees.
10:53:40 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.062957150997576 and -58.97408586503801 degrees.
10:53:40 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:40 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:40 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:40 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:40 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:40 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:40 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.743136 (min) 0.996011 (max)
10:53:40 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.981323 (min) 0.759381 (max)
10:53:40 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000301159 (min) 0.000271856 (max)
10:53:40 DEBUG opendrift.models.basemodel:1524: x_wind: -3.638 (min) 10.4124 (max)
10:53:40 DEBUG opendrift.models.basemodel:1524: y_wind: -5.31195 (min) 9.24022 (max)
10:53:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:40 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:40 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:40 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:40 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.7928 (max)
10:53:40 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:40 DEBUG opendrift.models.basemodel:1527: 2604 active elements
10:53:40 DEBUG opendrift.models.basemodel:1538: 59.11312718473276 <- latitude -> 59.18774662409791
10:53:40 DEBUG opendrift.models.basemodel:1543: 10.937053413758557 <- longitude -> 11.025924687673225
10:53:40 DEBUG opendrift.models.basemodel:1548: -14.423372268676758 <- z -> 0.0
10:53:40 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:40 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:40 DEBUG opendrift.models.physics_methods:940: min: 0.119408, mean: 3.347916, max: 8.913903
10:53:40 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.119408, mean: 3.347916, max: 8.913903
10:53:40 DEBUG opendrift.models.basemodel:813: 286 elements hit coastline, moving back to water
10:53:40 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:53:40 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:40 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:40 DEBUG opendrift.models.physics_methods:741: Advecting 34 of 2604 elements above 0.100m with wind-sheared ocean current (0.013005 m/s - 0.169612 m/s)
10:53:40 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:40 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:41 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.09832323076732635
10:53:41 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:41 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:41 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:41 DEBUG opendrift.models.oceandrift:572: 307 elements penetrated seafloor, lifting up
10:53:41 DEBUG opendrift.models.oceandrift:590: 28 elements reached seafloor, set to bottom
10:53:41 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
10:53:41 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
10:53:41 DEBUG opendrift.models.oceandrift:572: 233 elements penetrated seafloor, lifting up
10:53:41 DEBUG opendrift.models.oceandrift:590: 30 elements reached seafloor, set to bottom
10:53:41 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
10:53:41 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
10:53:41 DEBUG opendrift.models.oceandrift:572: 225 elements penetrated seafloor, lifting up
10:53:41 DEBUG opendrift.models.oceandrift:590: 26 elements reached seafloor, set to bottom
10:53:41 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
10:53:41 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
10:53:41 DEBUG opendrift.models.oceandrift:572: 208 elements penetrated seafloor, lifting up
10:53:41 DEBUG opendrift.models.oceandrift:590: 28 elements reached seafloor, set to bottom
10:53:41 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
10:53:41 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
10:53:41 DEBUG opendrift.models.oceandrift:572: 197 elements penetrated seafloor, lifting up
10:53:41 DEBUG opendrift.models.oceandrift:590: 20 elements reached seafloor, set to bottom
10:53:41 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
10:53:41 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
10:53:41 DEBUG opendrift.models.oceandrift:572: 209 elements penetrated seafloor, lifting up
10:53:41 DEBUG opendrift.models.oceandrift:590: 25 elements reached seafloor, set to bottom
10:53:41 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
10:53:41 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
10:53:41 DEBUG opendrift.models.oceandrift:572: 176 elements penetrated seafloor, lifting up
10:53:41 DEBUG opendrift.models.oceandrift:590: 23 elements reached seafloor, set to bottom
10:53:41 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
10:53:41 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
10:53:41 DEBUG opendrift.models.oceandrift:572: 198 elements penetrated seafloor, lifting up
10:53:41 DEBUG opendrift.models.oceandrift:590: 19 elements reached seafloor, set to bottom
10:53:41 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
10:53:41 DEBUG opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
10:53:41 DEBUG opendrift.models.oceandrift:572: 189 elements penetrated seafloor, lifting up
10:53:41 DEBUG opendrift.models.oceandrift:590: 21 elements reached seafloor, set to bottom
10:53:41 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
10:53:41 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
10:53:41 DEBUG opendrift.models.oceandrift:572: 160 elements penetrated seafloor, lifting up
10:53:41 DEBUG opendrift.models.oceandrift:590: 27 elements reached seafloor, set to bottom
10:53:41 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
10:53:41 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
10:53:41 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:41 DEBUG opendrift.models.basemodel:2945: 2604 active elements (0 deactivated)
10:53:41 DEBUG opendrift.models.basemodel:1658: to be seeded: 7396, already seeded 2604
10:53:41 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:41 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:41 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:41 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:41 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:41 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:41 DEBUG opendrift.models.basemodel:1253: Data needed for 2639 elements
10:53:41 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:41 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 23:00:00 (before)
2023-08-22 00:00:00 (after)
10:53:41 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 23:00:00) in space (linearNDFast)
10:53:41 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:41 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:41 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:41 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:41 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:41 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:41 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.8772 (max)
10:53:41 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:41 DEBUG opendrift.models.basemodel:1527: 2639 active elements
10:53:41 DEBUG opendrift.models.basemodel:1538: 59.11012372353363 <- latitude -> 59.18866575329508
10:53:41 DEBUG opendrift.models.basemodel:1543: 10.938635833690554 <- longitude -> 11.026356579608956
10:53:41 DEBUG opendrift.models.basemodel:1548: -14.423372268676758 <- z -> 0.0
10:53:41 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:41 DEBUG opendrift.models.basemodel:836: Lifting 166 elements to seafloor.
10:53:41 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:41 INFO opendrift.models.basemodel:2882: 2023-08-21 23:22:19.552469 - step 76 of 216 - 2639 active elements (0 deactivated)
10:53:41 DEBUG opendrift.models.basemodel:2888: 7361 elements scheduled.
10:53:41 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:41 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:41 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:41 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:41 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:41 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:41 DEBUG opendrift.models.basemodel:1253: Data needed for 2639 elements
10:53:41 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:41 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:41 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:41 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:41 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:41 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:41 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:41 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:41 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:41 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:41 DEBUG opendrift.models.basemodel:1253: Data needed for 2639 elements
10:53:41 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:41 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 23:00:00 (before)
2023-08-22 00:00:00 (after)
10:53:41 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:41 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:41 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:41 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:41 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:41 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:41 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x21x5) for time after (2023-08-22 00:00:00)
10:53:41 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 23:00:00) in space (linearNDFast)
10:53:41 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:41 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 00:00:00) in space (linearNDFast)
10:53:41 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1077 elements, expanding data 1
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1077 elements, expanding data 1
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1186 elements, expanding data 1
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1186 elements, expanding data 1
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1186 elements, expanding data 1
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1186 elements, expanding data 1
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1186 elements, expanding data 1
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 137 elements, expanding data 2
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1807 elements, expanding data 1
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 424 elements, expanding data 2
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1807 elements, expanding data 1
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 424 elements, expanding data 2
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1807 elements, expanding data 1
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 424 elements, expanding data 2
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1807 elements, expanding data 1
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 424 elements, expanding data 2
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1807 elements, expanding data 1
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 424 elements, expanding data 2
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1077 elements, expanding data 1
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1077 elements, expanding data 1
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1077 elements, expanding data 1
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1077 elements, expanding data 1
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1077 elements, expanding data 1
10:53:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 2
10:53:41 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 23:00:00, weight 0.63) and
after (2023-08-22 00:00:00, weight 0.37) in time
10:53:41 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06137472873106 and -58.97365396735628 degrees.
10:53:41 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06137472873106 and -58.97365396735628 degrees.
10:53:41 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:41 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:41 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:41 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:41 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:41 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:41 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.769812 (min) 1.33612 (max)
10:53:41 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.01478 (min) 0.838046 (max)
10:53:41 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000308852 (min) 0.000238033 (max)
10:53:41 DEBUG opendrift.models.basemodel:1524: x_wind: -3.74705 (min) 9.86779 (max)
10:53:41 DEBUG opendrift.models.basemodel:1524: y_wind: -5.7329 (min) 7.98658 (max)
10:53:41 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:41 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:41 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:41 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:41 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:41 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:41 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:41 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 14.8772 (max)
10:53:41 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:41 DEBUG opendrift.models.basemodel:1527: 2639 active elements
10:53:41 DEBUG opendrift.models.basemodel:1538: 59.11012372353363 <- latitude -> 59.18866575329508
10:53:41 DEBUG opendrift.models.basemodel:1543: 10.938635833690554 <- longitude -> 11.026356579608956
10:53:41 DEBUG opendrift.models.basemodel:1548: -14.423372268676758 <- z -> 0.0
10:53:41 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:41 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:41 DEBUG opendrift.models.physics_methods:940: min: 0.087290, mean: 3.343043, max: 9.254229
10:53:41 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.087290, mean: 3.343043, max: 9.254229
10:53:41 DEBUG opendrift.models.basemodel:813: 286 elements hit coastline, moving back to water
10:53:41 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:41 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:41 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:41 DEBUG opendrift.models.physics_methods:741: Advecting 38 of 2639 elements above 0.100m with wind-sheared ocean current (0.001657 m/s - 0.150483 m/s)
10:53:41 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:41 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:41 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.10597404524906158
10:53:41 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:41 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:41 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:41 DEBUG opendrift.models.oceandrift:572: 285 elements penetrated seafloor, lifting up
10:53:41 DEBUG opendrift.models.oceandrift:590: 39 elements reached seafloor, set to bottom
10:53:41 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
10:53:41 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
10:53:41 DEBUG opendrift.models.oceandrift:572: 217 elements penetrated seafloor, lifting up
10:53:41 DEBUG opendrift.models.oceandrift:590: 29 elements reached seafloor, set to bottom
10:53:41 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
10:53:41 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
10:53:41 DEBUG opendrift.models.oceandrift:572: 218 elements penetrated seafloor, lifting up
10:53:41 DEBUG opendrift.models.oceandrift:590: 30 elements reached seafloor, set to bottom
10:53:41 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
10:53:41 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
10:53:41 DEBUG opendrift.models.oceandrift:572: 223 elements penetrated seafloor, lifting up
10:53:41 DEBUG opendrift.models.oceandrift:590: 22 elements reached seafloor, set to bottom
10:53:41 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
10:53:41 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
10:53:41 DEBUG opendrift.models.oceandrift:572: 200 elements penetrated seafloor, lifting up
10:53:41 DEBUG opendrift.models.oceandrift:590: 27 elements reached seafloor, set to bottom
10:53:41 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
10:53:41 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
10:53:41 DEBUG opendrift.models.oceandrift:572: 194 elements penetrated seafloor, lifting up
10:53:41 DEBUG opendrift.models.oceandrift:590: 26 elements reached seafloor, set to bottom
10:53:41 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
10:53:41 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
10:53:41 DEBUG opendrift.models.oceandrift:572: 179 elements penetrated seafloor, lifting up
10:53:41 DEBUG opendrift.models.oceandrift:590: 26 elements reached seafloor, set to bottom
10:53:41 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
10:53:41 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
10:53:41 DEBUG opendrift.models.oceandrift:572: 167 elements penetrated seafloor, lifting up
10:53:41 DEBUG opendrift.models.oceandrift:590: 30 elements reached seafloor, set to bottom
10:53:41 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
10:53:41 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
10:53:41 DEBUG opendrift.models.oceandrift:572: 190 elements penetrated seafloor, lifting up
10:53:41 DEBUG opendrift.models.oceandrift:590: 21 elements reached seafloor, set to bottom
10:53:41 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
10:53:41 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
10:53:41 DEBUG opendrift.models.oceandrift:572: 167 elements penetrated seafloor, lifting up
10:53:41 DEBUG opendrift.models.oceandrift:590: 22 elements reached seafloor, set to bottom
10:53:41 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
10:53:41 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
10:53:41 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:41 DEBUG opendrift.models.basemodel:2945: 2639 active elements (0 deactivated)
10:53:41 DEBUG opendrift.models.basemodel:1658: to be seeded: 7361, already seeded 2639
10:53:41 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:41 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:41 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:41 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:41 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:41 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:41 DEBUG opendrift.models.basemodel:1253: Data needed for 2674 elements
10:53:41 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:41 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 23:00:00 (before)
2023-08-22 00:00:00 (after)
10:53:41 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 23:00:00) in space (linearNDFast)
10:53:41 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:41 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:41 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:41 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:41 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:41 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:41 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.1265 (max)
10:53:41 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:41 DEBUG opendrift.models.basemodel:1527: 2674 active elements
10:53:41 DEBUG opendrift.models.basemodel:1538: 59.10784263240957 <- latitude -> 59.188996592847
10:53:41 DEBUG opendrift.models.basemodel:1543: 10.939543984068155 <- longitude -> 11.026908581363182
10:53:41 DEBUG opendrift.models.basemodel:1548: -14.423372268676758 <- z -> 0.0
10:53:41 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:41 DEBUG opendrift.models.basemodel:836: Lifting 185 elements to seafloor.
10:53:41 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:41 INFO opendrift.models.basemodel:2882: 2023-08-21 23:32:19.552469 - step 77 of 216 - 2674 active elements (0 deactivated)
10:53:41 DEBUG opendrift.models.basemodel:2888: 7326 elements scheduled.
10:53:41 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:41 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:41 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:41 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:41 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:41 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:41 DEBUG opendrift.models.basemodel:1253: Data needed for 2674 elements
10:53:41 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:41 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:41 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:41 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:41 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:41 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:41 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:41 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:41 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:41 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:41 DEBUG opendrift.models.basemodel:1253: Data needed for 2674 elements
10:53:41 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:41 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 23:00:00 (before)
2023-08-22 00:00:00 (after)
10:53:42 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:42 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:42 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:42 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:42 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:42 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:42 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x22x5) for time after (2023-08-22 00:00:00)
10:53:42 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 23:00:00) in space (linearNDFast)
10:53:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:42 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 00:00:00) in space (linearNDFast)
10:53:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1091 elements, expanding data 1
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1091 elements, expanding data 1
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1205 elements, expanding data 1
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 150 elements, expanding data 2
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1205 elements, expanding data 1
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 150 elements, expanding data 2
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1205 elements, expanding data 1
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 150 elements, expanding data 2
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1205 elements, expanding data 1
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 150 elements, expanding data 2
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1205 elements, expanding data 1
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 150 elements, expanding data 2
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1832 elements, expanding data 1
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 452 elements, expanding data 2
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1832 elements, expanding data 1
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 452 elements, expanding data 2
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1832 elements, expanding data 1
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 452 elements, expanding data 2
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1832 elements, expanding data 1
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 452 elements, expanding data 2
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1832 elements, expanding data 1
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 452 elements, expanding data 2
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1091 elements, expanding data 1
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1091 elements, expanding data 1
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1091 elements, expanding data 1
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1091 elements, expanding data 1
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1091 elements, expanding data 1
10:53:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
10:53:42 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 23:00:00, weight 0.46) and
after (2023-08-22 00:00:00, weight 0.54) in time
10:53:42 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.060466582339096 and -58.97310196840666 degrees.
10:53:42 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.060466582339096 and -58.97310196840666 degrees.
10:53:42 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:42 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:42 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:42 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:42 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:42 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:42 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.843603 (min) 1.181 (max)
10:53:42 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.914393 (min) 0.825831 (max)
10:53:42 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000299176 (min) 0.000256064 (max)
10:53:42 DEBUG opendrift.models.basemodel:1524: x_wind: -5.22684 (min) 10.8906 (max)
10:53:42 DEBUG opendrift.models.basemodel:1524: y_wind: -5.70733 (min) 7.7183 (max)
10:53:42 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:42 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:42 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:42 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:42 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:42 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:42 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:42 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.1265 (max)
10:53:42 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:42 DEBUG opendrift.models.basemodel:1527: 2674 active elements
10:53:42 DEBUG opendrift.models.basemodel:1538: 59.10784263240957 <- latitude -> 59.188996592847
10:53:42 DEBUG opendrift.models.basemodel:1543: 10.939543984068155 <- longitude -> 11.026908581363182
10:53:42 DEBUG opendrift.models.basemodel:1548: -14.423372268676758 <- z -> 0.0
10:53:42 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:42 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:42 DEBUG opendrift.models.physics_methods:940: min: 0.032087, mean: 3.353728, max: 9.456644
10:53:42 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.032087, mean: 3.353728, max: 9.456644
10:53:42 DEBUG opendrift.models.basemodel:813: 325 elements hit coastline, moving back to water
10:53:42 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:53:42 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:42 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:42 DEBUG opendrift.models.physics_methods:741: Advecting 37 of 2674 elements above 0.100m with wind-sheared ocean current (0.002770 m/s - 0.160287 m/s)
10:53:42 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:42 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:42 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.11066045204647064
10:53:42 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:42 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:42 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:42 DEBUG opendrift.models.oceandrift:572: 300 elements penetrated seafloor, lifting up
10:53:42 DEBUG opendrift.models.oceandrift:590: 29 elements reached seafloor, set to bottom
10:53:42 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
10:53:42 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
10:53:42 DEBUG opendrift.models.oceandrift:572: 240 elements penetrated seafloor, lifting up
10:53:42 DEBUG opendrift.models.oceandrift:590: 33 elements reached seafloor, set to bottom
10:53:42 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
10:53:42 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
10:53:42 DEBUG opendrift.models.oceandrift:572: 216 elements penetrated seafloor, lifting up
10:53:42 DEBUG opendrift.models.oceandrift:590: 30 elements reached seafloor, set to bottom
10:53:42 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
10:53:42 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
10:53:42 DEBUG opendrift.models.oceandrift:572: 226 elements penetrated seafloor, lifting up
10:53:42 DEBUG opendrift.models.oceandrift:590: 29 elements reached seafloor, set to bottom
10:53:42 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
10:53:42 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
10:53:42 DEBUG opendrift.models.oceandrift:572: 205 elements penetrated seafloor, lifting up
10:53:42 DEBUG opendrift.models.oceandrift:590: 29 elements reached seafloor, set to bottom
10:53:42 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
10:53:42 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
10:53:42 DEBUG opendrift.models.oceandrift:572: 202 elements penetrated seafloor, lifting up
10:53:42 DEBUG opendrift.models.oceandrift:590: 24 elements reached seafloor, set to bottom
10:53:42 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
10:53:42 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
10:53:42 DEBUG opendrift.models.oceandrift:572: 173 elements penetrated seafloor, lifting up
10:53:42 DEBUG opendrift.models.oceandrift:590: 20 elements reached seafloor, set to bottom
10:53:42 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
10:53:42 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
10:53:42 DEBUG opendrift.models.oceandrift:572: 173 elements penetrated seafloor, lifting up
10:53:42 DEBUG opendrift.models.oceandrift:590: 14 elements reached seafloor, set to bottom
10:53:42 DEBUG opendrift.models.basemodel:836: Lifting 14 elements to seafloor.
10:53:42 DEBUG opendrift.models.sedimentdrift:112: Settling 14 elements at seafloor
10:53:42 DEBUG opendrift.models.oceandrift:572: 172 elements penetrated seafloor, lifting up
10:53:42 DEBUG opendrift.models.oceandrift:590: 21 elements reached seafloor, set to bottom
10:53:42 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
10:53:42 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
10:53:42 DEBUG opendrift.models.oceandrift:572: 181 elements penetrated seafloor, lifting up
10:53:42 DEBUG opendrift.models.oceandrift:590: 22 elements reached seafloor, set to bottom
10:53:42 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
10:53:42 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
10:53:42 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:42 DEBUG opendrift.models.basemodel:2945: 2674 active elements (0 deactivated)
10:53:42 DEBUG opendrift.models.basemodel:1658: to be seeded: 7326, already seeded 2674
10:53:42 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:42 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:42 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:42 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:42 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:42 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:42 DEBUG opendrift.models.basemodel:1253: Data needed for 2709 elements
10:53:42 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:42 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 23:00:00 (before)
2023-08-22 00:00:00 (after)
10:53:42 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 23:00:00) in space (linearNDFast)
10:53:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:42 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:42 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:42 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:42 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:42 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:42 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.1832 (max)
10:53:42 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:42 DEBUG opendrift.models.basemodel:1527: 2709 active elements
10:53:42 DEBUG opendrift.models.basemodel:1538: 59.10707188800922 <- latitude -> 59.18721403119217
10:53:42 DEBUG opendrift.models.basemodel:1543: 10.940396268564882 <- longitude -> 11.026131000642364
10:53:42 DEBUG opendrift.models.basemodel:1548: -14.577289810180664 <- z -> 0.0
10:53:42 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:42 DEBUG opendrift.models.basemodel:836: Lifting 181 elements to seafloor.
10:53:42 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:42 INFO opendrift.models.basemodel:2882: 2023-08-21 23:42:19.552469 - step 78 of 216 - 2709 active elements (0 deactivated)
10:53:42 DEBUG opendrift.models.basemodel:2888: 7291 elements scheduled.
10:53:42 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:42 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:42 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:42 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:42 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:42 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:42 DEBUG opendrift.models.basemodel:1253: Data needed for 2709 elements
10:53:42 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:42 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:42 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:42 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:42 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:42 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:42 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:42 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:42 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:42 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:42 DEBUG opendrift.models.basemodel:1253: Data needed for 2709 elements
10:53:42 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:42 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 23:00:00 (before)
2023-08-22 00:00:00 (after)
10:53:43 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:43 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:43 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:43 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:43 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:43 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:43 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x21x5) for time after (2023-08-22 00:00:00)
10:53:43 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 23:00:00) in space (linearNDFast)
10:53:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:43 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 00:00:00) in space (linearNDFast)
10:53:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1133 elements, expanding data 1
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1133 elements, expanding data 1
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1233 elements, expanding data 1
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 153 elements, expanding data 2
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1233 elements, expanding data 1
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 153 elements, expanding data 2
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1233 elements, expanding data 1
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 153 elements, expanding data 2
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1233 elements, expanding data 1
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 153 elements, expanding data 2
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1233 elements, expanding data 1
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 153 elements, expanding data 2
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1856 elements, expanding data 1
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 482 elements, expanding data 2
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1856 elements, expanding data 1
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 482 elements, expanding data 2
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1856 elements, expanding data 1
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 482 elements, expanding data 2
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1856 elements, expanding data 1
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 482 elements, expanding data 2
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1856 elements, expanding data 1
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 482 elements, expanding data 2
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1133 elements, expanding data 1
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1133 elements, expanding data 1
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1133 elements, expanding data 1
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1133 elements, expanding data 1
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1133 elements, expanding data 1
10:53:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
10:53:43 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 23:00:00, weight 0.29) and
after (2023-08-22 00:00:00, weight 0.71) in time
10:53:43 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05961428848181 and -58.97387954286379 degrees.
10:53:43 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.05961428848181 and -58.97387954286379 degrees.
10:53:43 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:43 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:43 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:43 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:43 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:43 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:43 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.676402 (min) 1.08648 (max)
10:53:43 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.05271 (min) 0.913854 (max)
10:53:43 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000308903 (min) 0.000300117 (max)
10:53:43 DEBUG opendrift.models.basemodel:1524: x_wind: -3.5163 (min) 10.3445 (max)
10:53:43 DEBUG opendrift.models.basemodel:1524: y_wind: -5.77735 (min) 8.05588 (max)
10:53:43 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:43 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:43 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:43 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:43 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:43 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:43 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:43 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.1832 (max)
10:53:43 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:43 DEBUG opendrift.models.basemodel:1527: 2709 active elements
10:53:43 DEBUG opendrift.models.basemodel:1538: 59.10707188800922 <- latitude -> 59.18721403119217
10:53:43 DEBUG opendrift.models.basemodel:1543: 10.940396268564882 <- longitude -> 11.026131000642364
10:53:43 DEBUG opendrift.models.basemodel:1548: -14.462067604064941 <- z -> 0.0
10:53:43 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:43 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:43 DEBUG opendrift.models.physics_methods:940: min: 0.014484, mean: 3.341638, max: 8.854000
10:53:43 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.014484, mean: 3.341638, max: 8.854000
10:53:43 DEBUG opendrift.models.basemodel:813: 308 elements hit coastline, moving back to water
10:53:43 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
10:53:43 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:43 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:43 DEBUG opendrift.models.physics_methods:741: Advecting 36 of 2709 elements above 0.100m with wind-sheared ocean current (0.013589 m/s - 0.186785 m/s)
10:53:43 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:43 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:43 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.09700624590213774
10:53:43 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:43 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:43 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:43 DEBUG opendrift.models.oceandrift:572: 324 elements penetrated seafloor, lifting up
10:53:43 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:53:43 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:53:43 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:53:43 DEBUG opendrift.models.oceandrift:572: 245 elements penetrated seafloor, lifting up
10:53:43 DEBUG opendrift.models.oceandrift:590: 32 elements reached seafloor, set to bottom
10:53:43 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
10:53:43 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
10:53:43 DEBUG opendrift.models.oceandrift:572: 222 elements penetrated seafloor, lifting up
10:53:43 DEBUG opendrift.models.oceandrift:590: 31 elements reached seafloor, set to bottom
10:53:43 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
10:53:43 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
10:53:43 DEBUG opendrift.models.oceandrift:572: 194 elements penetrated seafloor, lifting up
10:53:43 DEBUG opendrift.models.oceandrift:590: 26 elements reached seafloor, set to bottom
10:53:43 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
10:53:43 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
10:53:43 DEBUG opendrift.models.oceandrift:572: 189 elements penetrated seafloor, lifting up
10:53:43 DEBUG opendrift.models.oceandrift:590: 33 elements reached seafloor, set to bottom
10:53:43 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
10:53:43 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
10:53:43 DEBUG opendrift.models.oceandrift:572: 206 elements penetrated seafloor, lifting up
10:53:43 DEBUG opendrift.models.oceandrift:590: 25 elements reached seafloor, set to bottom
10:53:43 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
10:53:43 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
10:53:43 DEBUG opendrift.models.oceandrift:572: 177 elements penetrated seafloor, lifting up
10:53:43 DEBUG opendrift.models.oceandrift:590: 26 elements reached seafloor, set to bottom
10:53:43 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
10:53:43 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
10:53:43 DEBUG opendrift.models.oceandrift:572: 218 elements penetrated seafloor, lifting up
10:53:43 DEBUG opendrift.models.oceandrift:590: 19 elements reached seafloor, set to bottom
10:53:43 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
10:53:43 DEBUG opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
10:53:43 DEBUG opendrift.models.oceandrift:572: 200 elements penetrated seafloor, lifting up
10:53:43 DEBUG opendrift.models.oceandrift:590: 28 elements reached seafloor, set to bottom
10:53:43 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
10:53:43 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
10:53:43 DEBUG opendrift.models.oceandrift:572: 157 elements penetrated seafloor, lifting up
10:53:43 DEBUG opendrift.models.oceandrift:590: 24 elements reached seafloor, set to bottom
10:53:43 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
10:53:43 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
10:53:43 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:43 DEBUG opendrift.models.basemodel:2945: 2709 active elements (0 deactivated)
10:53:43 DEBUG opendrift.models.basemodel:1658: to be seeded: 7291, already seeded 2709
10:53:43 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:53:43 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:43 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:43 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:43 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:43 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:43 DEBUG opendrift.models.basemodel:1253: Data needed for 2743 elements
10:53:43 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:43 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 23:00:00 (before)
2023-08-22 00:00:00 (after)
10:53:43 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 23:00:00) in space (linearNDFast)
10:53:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:43 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:43 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:43 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:43 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:43 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:43 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.0967 (max)
10:53:43 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:43 DEBUG opendrift.models.basemodel:1527: 2743 active elements
10:53:43 DEBUG opendrift.models.basemodel:1538: 59.10853874645163 <- latitude -> 59.18771980839002
10:53:43 DEBUG opendrift.models.basemodel:1543: 10.939772911534472 <- longitude -> 11.025578639841543
10:53:43 DEBUG opendrift.models.basemodel:1548: -14.637149336649228 <- z -> 0.0
10:53:43 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:43 DEBUG opendrift.models.basemodel:836: Lifting 190 elements to seafloor.
10:53:43 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:43 INFO opendrift.models.basemodel:2882: 2023-08-21 23:52:19.552469 - step 79 of 216 - 2743 active elements (0 deactivated)
10:53:43 DEBUG opendrift.models.basemodel:2888: 7257 elements scheduled.
10:53:43 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:43 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:43 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:43 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:43 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:43 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:43 DEBUG opendrift.models.basemodel:1253: Data needed for 2743 elements
10:53:43 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:43 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:43 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:43 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:43 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:43 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:43 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:43 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:43 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:43 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:43 DEBUG opendrift.models.basemodel:1253: Data needed for 2743 elements
10:53:43 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:43 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-21 23:00:00 (before)
2023-08-22 00:00:00 (after)
10:53:44 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:44 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:44 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:44 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:44 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:44 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:44 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x21x5) for time after (2023-08-22 00:00:00)
10:53:44 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-21 23:00:00) in space (linearNDFast)
10:53:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:44 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 00:00:00) in space (linearNDFast)
10:53:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1161 elements, expanding data 1
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1161 elements, expanding data 1
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1263 elements, expanding data 1
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 2
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1263 elements, expanding data 1
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 2
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1263 elements, expanding data 1
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 2
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1263 elements, expanding data 1
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 2
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1263 elements, expanding data 1
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 2
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1877 elements, expanding data 1
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 511 elements, expanding data 2
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1877 elements, expanding data 1
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 511 elements, expanding data 2
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1877 elements, expanding data 1
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 511 elements, expanding data 2
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1877 elements, expanding data 1
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 511 elements, expanding data 2
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1877 elements, expanding data 1
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 511 elements, expanding data 2
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1161 elements, expanding data 1
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1161 elements, expanding data 1
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1161 elements, expanding data 1
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1161 elements, expanding data 1
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1161 elements, expanding data 1
10:53:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 2
10:53:44 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-21 23:00:00, weight 0.13) and
after (2023-08-22 00:00:00, weight 0.87) in time
10:53:44 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06023765761389 and -58.974431911493014 degrees.
10:53:44 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06023765761389 and -58.974431911493014 degrees.
10:53:44 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:44 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:44 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:44 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:44 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:44 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:44 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.775756 (min) 1.04971 (max)
10:53:44 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.873309 (min) 0.834002 (max)
10:53:44 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000336959 (min) 0.000285934 (max)
10:53:44 DEBUG opendrift.models.basemodel:1524: x_wind: -4.38711 (min) 10.494 (max)
10:53:44 DEBUG opendrift.models.basemodel:1524: y_wind: -7.40302 (min) 8.03061 (max)
10:53:44 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:44 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:44 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:44 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:44 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:44 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:44 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:44 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.0967 (max)
10:53:44 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:44 DEBUG opendrift.models.basemodel:1527: 2743 active elements
10:53:44 DEBUG opendrift.models.basemodel:1538: 59.10853874645163 <- latitude -> 59.18771980839002
10:53:44 DEBUG opendrift.models.basemodel:1543: 10.939772911534472 <- longitude -> 11.025578639841543
10:53:44 DEBUG opendrift.models.basemodel:1548: -14.637149336649228 <- z -> 0.0
10:53:44 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:44 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:44 DEBUG opendrift.models.physics_methods:940: min: 0.116130, mean: 3.332991, max: 9.858308
10:53:44 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.116130, mean: 3.332991, max: 9.858308
10:53:44 DEBUG opendrift.models.basemodel:813: 332 elements hit coastline, moving back to water
10:53:44 DEBUG opendrift.models.basemodel:836: Lifting 3 elements to seafloor.
10:53:44 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:44 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:44 DEBUG opendrift.models.physics_methods:741: Advecting 35 of 2743 elements above 0.100m with wind-sheared ocean current (0.005756 m/s - 0.122967 m/s)
10:53:44 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:44 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:44 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.12026018131788253
10:53:44 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:44 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:44 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:44 DEBUG opendrift.models.oceandrift:572: 314 elements penetrated seafloor, lifting up
10:53:44 DEBUG opendrift.models.oceandrift:590: 36 elements reached seafloor, set to bottom
10:53:44 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
10:53:44 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
10:53:44 DEBUG opendrift.models.oceandrift:572: 238 elements penetrated seafloor, lifting up
10:53:44 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:53:44 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:53:44 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:53:44 DEBUG opendrift.models.oceandrift:572: 234 elements penetrated seafloor, lifting up
10:53:44 DEBUG opendrift.models.oceandrift:590: 40 elements reached seafloor, set to bottom
10:53:44 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
10:53:44 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
10:53:44 DEBUG opendrift.models.oceandrift:572: 189 elements penetrated seafloor, lifting up
10:53:44 DEBUG opendrift.models.oceandrift:590: 21 elements reached seafloor, set to bottom
10:53:44 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
10:53:44 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
10:53:44 DEBUG opendrift.models.oceandrift:572: 201 elements penetrated seafloor, lifting up
10:53:44 DEBUG opendrift.models.oceandrift:590: 29 elements reached seafloor, set to bottom
10:53:44 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
10:53:44 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
10:53:44 DEBUG opendrift.models.oceandrift:572: 214 elements penetrated seafloor, lifting up
10:53:44 DEBUG opendrift.models.oceandrift:590: 31 elements reached seafloor, set to bottom
10:53:44 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
10:53:44 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
10:53:44 DEBUG opendrift.models.oceandrift:572: 203 elements penetrated seafloor, lifting up
10:53:44 DEBUG opendrift.models.oceandrift:590: 26 elements reached seafloor, set to bottom
10:53:44 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
10:53:44 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
10:53:44 DEBUG opendrift.models.oceandrift:572: 183 elements penetrated seafloor, lifting up
10:53:44 DEBUG opendrift.models.oceandrift:590: 23 elements reached seafloor, set to bottom
10:53:44 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
10:53:44 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
10:53:44 DEBUG opendrift.models.oceandrift:572: 181 elements penetrated seafloor, lifting up
10:53:44 DEBUG opendrift.models.oceandrift:590: 21 elements reached seafloor, set to bottom
10:53:44 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
10:53:44 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
10:53:44 DEBUG opendrift.models.oceandrift:572: 191 elements penetrated seafloor, lifting up
10:53:44 DEBUG opendrift.models.oceandrift:590: 30 elements reached seafloor, set to bottom
10:53:44 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
10:53:44 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
10:53:44 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:44 DEBUG opendrift.models.basemodel:2945: 2743 active elements (0 deactivated)
10:53:44 DEBUG opendrift.models.basemodel:1658: to be seeded: 7257, already seeded 2743
10:53:44 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:44 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:44 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:44 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:44 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:44 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:44 DEBUG opendrift.models.basemodel:1253: Data needed for 2778 elements
10:53:44 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:44 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 00:00:00 (before)
2023-08-22 01:00:00 (after)
10:53:44 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 00:00:00) in space (linearNDFast)
10:53:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:44 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:44 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:44 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:44 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:44 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:44 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.0593 (max)
10:53:44 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:44 DEBUG opendrift.models.basemodel:1527: 2778 active elements
10:53:44 DEBUG opendrift.models.basemodel:1538: 59.10903353587504 <- latitude -> 59.18789769628297
10:53:44 DEBUG opendrift.models.basemodel:1543: 10.932829585785402 <- longitude -> 11.025962436474863
10:53:44 DEBUG opendrift.models.basemodel:1548: -15.086735000610352 <- z -> 0.0
10:53:44 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:44 DEBUG opendrift.models.basemodel:836: Lifting 204 elements to seafloor.
10:53:44 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:44 INFO opendrift.models.basemodel:2882: 2023-08-22 00:02:19.552469 - step 80 of 216 - 2778 active elements (0 deactivated)
10:53:44 DEBUG opendrift.models.basemodel:2888: 7222 elements scheduled.
10:53:44 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:44 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:44 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:44 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:44 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:44 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:44 DEBUG opendrift.models.basemodel:1253: Data needed for 2778 elements
10:53:44 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:44 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:44 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:44 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:44 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:44 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:44 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:44 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:44 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:44 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:44 DEBUG opendrift.models.basemodel:1253: Data needed for 2778 elements
10:53:44 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:44 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 00:00:00 (before)
2023-08-22 01:00:00 (after)
10:53:45 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:45 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:45 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:45 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:45 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:45 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:45 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x21x6) for time after (2023-08-22 01:00:00)
10:53:45 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 00:00:00) in space (linearNDFast)
10:53:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:45 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 01:00:00) in space (linearNDFast)
10:53:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1186 elements, expanding data 1
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1186 elements, expanding data 1
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1298 elements, expanding data 1
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 160 elements, expanding data 2
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1298 elements, expanding data 1
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 160 elements, expanding data 2
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1298 elements, expanding data 1
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 160 elements, expanding data 2
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1298 elements, expanding data 1
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 160 elements, expanding data 2
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1298 elements, expanding data 1
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 160 elements, expanding data 2
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1298 elements, expanding data 1
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 160 elements, expanding data 2
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1894 elements, expanding data 1
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 529 elements, expanding data 2
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1894 elements, expanding data 1
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 529 elements, expanding data 2
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1894 elements, expanding data 1
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 529 elements, expanding data 2
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1894 elements, expanding data 1
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 529 elements, expanding data 2
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1894 elements, expanding data 1
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 529 elements, expanding data 2
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1894 elements, expanding data 1
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 529 elements, expanding data 2
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1186 elements, expanding data 1
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1186 elements, expanding data 1
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1186 elements, expanding data 1
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1186 elements, expanding data 1
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1186 elements, expanding data 1
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1186 elements, expanding data 1
10:53:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 2
10:53:45 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 00:00:00, weight 0.96) and
after (2023-08-22 01:00:00, weight 0.04) in time
10:53:45 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.067180984830195 and -58.974048114803864 degrees.
10:53:45 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.067180984830195 and -58.974048114803864 degrees.
10:53:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:45 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:45 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:45 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:45 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:45 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:45 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.940282 (min) 1.08772 (max)
10:53:45 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.26639 (min) 0.884292 (max)
10:53:45 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000330362 (min) 0.000296704 (max)
10:53:45 DEBUG opendrift.models.basemodel:1524: x_wind: -3.80245 (min) 10.8628 (max)
10:53:45 DEBUG opendrift.models.basemodel:1524: y_wind: -6.74693 (min) 7.82641 (max)
10:53:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:45 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:45 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:45 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:45 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.0593 (max)
10:53:45 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:45 DEBUG opendrift.models.basemodel:1527: 2778 active elements
10:53:45 DEBUG opendrift.models.basemodel:1538: 59.10903353587504 <- latitude -> 59.18789769628297
10:53:45 DEBUG opendrift.models.basemodel:1543: 10.932829585785402 <- longitude -> 11.025962436474863
10:53:45 DEBUG opendrift.models.basemodel:1548: -15.059324264526367 <- z -> 0.0
10:53:45 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:45 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:45 DEBUG opendrift.models.physics_methods:940: min: 0.057010, mean: 3.309230, max: 9.369562
10:53:45 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.057010, mean: 3.309230, max: 9.369562
10:53:45 DEBUG opendrift.models.basemodel:813: 337 elements hit coastline, moving back to water
10:53:45 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:53:45 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:45 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:45 DEBUG opendrift.models.physics_methods:741: Advecting 38 of 2778 elements above 0.100m with wind-sheared ocean current (0.004902 m/s - 0.147565 m/s)
10:53:45 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:45 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:45 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.1086318673878479
10:53:45 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:45 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:45 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:45 DEBUG opendrift.models.oceandrift:572: 335 elements penetrated seafloor, lifting up
10:53:45 DEBUG opendrift.models.oceandrift:590: 36 elements reached seafloor, set to bottom
10:53:45 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
10:53:45 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
10:53:45 DEBUG opendrift.models.oceandrift:572: 245 elements penetrated seafloor, lifting up
10:53:45 DEBUG opendrift.models.oceandrift:590: 26 elements reached seafloor, set to bottom
10:53:45 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
10:53:45 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
10:53:45 DEBUG opendrift.models.oceandrift:572: 219 elements penetrated seafloor, lifting up
10:53:45 DEBUG opendrift.models.oceandrift:590: 34 elements reached seafloor, set to bottom
10:53:45 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
10:53:45 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
10:53:45 DEBUG opendrift.models.oceandrift:572: 206 elements penetrated seafloor, lifting up
10:53:45 DEBUG opendrift.models.oceandrift:590: 39 elements reached seafloor, set to bottom
10:53:45 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
10:53:45 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
10:53:45 DEBUG opendrift.models.oceandrift:572: 220 elements penetrated seafloor, lifting up
10:53:45 DEBUG opendrift.models.oceandrift:590: 26 elements reached seafloor, set to bottom
10:53:45 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
10:53:45 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
10:53:45 DEBUG opendrift.models.oceandrift:572: 222 elements penetrated seafloor, lifting up
10:53:45 DEBUG opendrift.models.oceandrift:590: 28 elements reached seafloor, set to bottom
10:53:45 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
10:53:45 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
10:53:45 DEBUG opendrift.models.oceandrift:572: 224 elements penetrated seafloor, lifting up
10:53:45 DEBUG opendrift.models.oceandrift:590: 27 elements reached seafloor, set to bottom
10:53:45 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
10:53:45 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
10:53:45 DEBUG opendrift.models.oceandrift:572: 186 elements penetrated seafloor, lifting up
10:53:45 DEBUG opendrift.models.oceandrift:590: 29 elements reached seafloor, set to bottom
10:53:45 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
10:53:45 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
10:53:45 DEBUG opendrift.models.oceandrift:572: 201 elements penetrated seafloor, lifting up
10:53:45 DEBUG opendrift.models.oceandrift:590: 22 elements reached seafloor, set to bottom
10:53:45 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
10:53:45 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
10:53:45 DEBUG opendrift.models.oceandrift:572: 165 elements penetrated seafloor, lifting up
10:53:45 DEBUG opendrift.models.oceandrift:590: 18 elements reached seafloor, set to bottom
10:53:45 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
10:53:45 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
10:53:45 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:45 DEBUG opendrift.models.basemodel:2945: 2778 active elements (0 deactivated)
10:53:45 DEBUG opendrift.models.basemodel:1658: to be seeded: 7222, already seeded 2778
10:53:45 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:45 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:45 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:45 DEBUG opendrift.models.basemodel:1253: Data needed for 2813 elements
10:53:45 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:45 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 00:00:00 (before)
2023-08-22 01:00:00 (after)
10:53:45 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 00:00:00) in space (linearNDFast)
10:53:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:45 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:45 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:45 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:45 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:45 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.0601 (max)
10:53:45 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:45 DEBUG opendrift.models.basemodel:1527: 2813 active elements
10:53:45 DEBUG opendrift.models.basemodel:1538: 59.109178782327476 <- latitude -> 59.185802183134804
10:53:45 DEBUG opendrift.models.basemodel:1543: 10.93339568347699 <- longitude -> 11.026730271150067
10:53:45 DEBUG opendrift.models.basemodel:1548: -14.011364212036133 <- z -> 0.0
10:53:45 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:45 DEBUG opendrift.models.basemodel:836: Lifting 183 elements to seafloor.
10:53:45 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:45 INFO opendrift.models.basemodel:2882: 2023-08-22 00:12:19.552469 - step 81 of 216 - 2813 active elements (0 deactivated)
10:53:45 DEBUG opendrift.models.basemodel:2888: 7187 elements scheduled.
10:53:45 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:45 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:45 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:45 DEBUG opendrift.models.basemodel:1253: Data needed for 2813 elements
10:53:45 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:45 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:45 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:45 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:45 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:45 DEBUG opendrift.models.basemodel:1253: Data needed for 2813 elements
10:53:45 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:45 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 00:00:00 (before)
2023-08-22 01:00:00 (after)
10:53:46 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:46 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:46 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:46 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:46 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:46 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:46 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x22x5) for time after (2023-08-22 01:00:00)
10:53:46 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 00:00:00) in space (linearNDFast)
10:53:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:46 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 01:00:00) in space (linearNDFast)
10:53:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1199 elements, expanding data 1
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1199 elements, expanding data 1
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1312 elements, expanding data 1
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 179 elements, expanding data 2
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1312 elements, expanding data 1
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 179 elements, expanding data 2
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1312 elements, expanding data 1
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 179 elements, expanding data 2
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1312 elements, expanding data 1
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 179 elements, expanding data 2
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1312 elements, expanding data 1
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 179 elements, expanding data 2
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1928 elements, expanding data 1
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 547 elements, expanding data 2
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1928 elements, expanding data 1
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 547 elements, expanding data 2
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1928 elements, expanding data 1
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 547 elements, expanding data 2
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1928 elements, expanding data 1
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 547 elements, expanding data 2
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1928 elements, expanding data 1
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 547 elements, expanding data 2
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1199 elements, expanding data 1
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1199 elements, expanding data 1
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1199 elements, expanding data 1
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1199 elements, expanding data 1
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1199 elements, expanding data 1
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 2
10:53:46 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 00:00:00, weight 0.79) and
after (2023-08-22 01:00:00, weight 0.21) in time
10:53:46 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06661487701498 and -58.97328027704981 degrees.
10:53:46 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06661487701498 and -58.97328027704981 degrees.
10:53:46 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:46 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:46 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:46 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:46 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:46 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:46 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.824784 (min) 0.998432 (max)
10:53:46 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.972597 (min) 0.740042 (max)
10:53:46 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000279596 (min) 0.000303609 (max)
10:53:46 DEBUG opendrift.models.basemodel:1524: x_wind: -3.91445 (min) 9.67878 (max)
10:53:46 DEBUG opendrift.models.basemodel:1524: y_wind: -6.35341 (min) 7.48247 (max)
10:53:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:46 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:46 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:46 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:46 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.0601 (max)
10:53:46 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:46 DEBUG opendrift.models.basemodel:1527: 2813 active elements
10:53:46 DEBUG opendrift.models.basemodel:1538: 59.109178782327476 <- latitude -> 59.185802183134804
10:53:46 DEBUG opendrift.models.basemodel:1543: 10.93339568347699 <- longitude -> 11.026730271150067
10:53:46 DEBUG opendrift.models.basemodel:1548: -14.011364212036133 <- z -> 0.0
10:53:46 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:46 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:46 DEBUG opendrift.models.physics_methods:940: min: 0.116690, mean: 3.335804, max: 8.633322
10:53:46 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.116690, mean: 3.335804, max: 8.633322
10:53:46 DEBUG opendrift.models.basemodel:813: 343 elements hit coastline, moving back to water
10:53:46 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:53:46 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:46 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:46 DEBUG opendrift.models.physics_methods:741: Advecting 36 of 2813 elements above 0.100m with wind-sheared ocean current (0.005335 m/s - 0.109622 m/s)
10:53:46 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:46 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:46 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.09223111202962875
10:53:46 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:46 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:46 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:46 DEBUG opendrift.models.oceandrift:572: 324 elements penetrated seafloor, lifting up
10:53:46 DEBUG opendrift.models.oceandrift:590: 38 elements reached seafloor, set to bottom
10:53:46 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
10:53:46 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
10:53:46 DEBUG opendrift.models.oceandrift:572: 261 elements penetrated seafloor, lifting up
10:53:46 DEBUG opendrift.models.oceandrift:590: 22 elements reached seafloor, set to bottom
10:53:46 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
10:53:46 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
10:53:46 DEBUG opendrift.models.oceandrift:572: 223 elements penetrated seafloor, lifting up
10:53:46 DEBUG opendrift.models.oceandrift:590: 25 elements reached seafloor, set to bottom
10:53:46 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
10:53:46 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
10:53:46 DEBUG opendrift.models.oceandrift:572: 247 elements penetrated seafloor, lifting up
10:53:46 DEBUG opendrift.models.oceandrift:590: 23 elements reached seafloor, set to bottom
10:53:46 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
10:53:46 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
10:53:46 DEBUG opendrift.models.oceandrift:572: 223 elements penetrated seafloor, lifting up
10:53:46 DEBUG opendrift.models.oceandrift:590: 25 elements reached seafloor, set to bottom
10:53:46 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
10:53:46 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
10:53:46 DEBUG opendrift.models.oceandrift:572: 221 elements penetrated seafloor, lifting up
10:53:46 DEBUG opendrift.models.oceandrift:590: 21 elements reached seafloor, set to bottom
10:53:46 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
10:53:46 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
10:53:46 DEBUG opendrift.models.oceandrift:572: 234 elements penetrated seafloor, lifting up
10:53:46 DEBUG opendrift.models.oceandrift:590: 39 elements reached seafloor, set to bottom
10:53:46 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
10:53:46 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
10:53:46 DEBUG opendrift.models.oceandrift:572: 205 elements penetrated seafloor, lifting up
10:53:46 DEBUG opendrift.models.oceandrift:590: 32 elements reached seafloor, set to bottom
10:53:46 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
10:53:46 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
10:53:46 DEBUG opendrift.models.oceandrift:572: 208 elements penetrated seafloor, lifting up
10:53:46 DEBUG opendrift.models.oceandrift:590: 29 elements reached seafloor, set to bottom
10:53:46 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
10:53:46 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
10:53:46 DEBUG opendrift.models.oceandrift:572: 199 elements penetrated seafloor, lifting up
10:53:46 DEBUG opendrift.models.oceandrift:590: 30 elements reached seafloor, set to bottom
10:53:46 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
10:53:46 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
10:53:46 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:46 DEBUG opendrift.models.basemodel:2945: 2813 active elements (0 deactivated)
10:53:46 DEBUG opendrift.models.basemodel:1658: to be seeded: 7187, already seeded 2813
10:53:46 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:53:46 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:46 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:46 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:46 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:46 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:46 DEBUG opendrift.models.basemodel:1253: Data needed for 2847 elements
10:53:46 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:46 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 00:00:00 (before)
2023-08-22 01:00:00 (after)
10:53:46 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 00:00:00) in space (linearNDFast)
10:53:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:53:46 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:46 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:46 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:46 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:46 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:46 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.1111 (max)
10:53:46 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:46 DEBUG opendrift.models.basemodel:1527: 2847 active elements
10:53:46 DEBUG opendrift.models.basemodel:1538: 59.10835603882899 <- latitude -> 59.18818002446079
10:53:46 DEBUG opendrift.models.basemodel:1543: 10.932363206768283 <- longitude -> 11.026292598613681
10:53:46 DEBUG opendrift.models.basemodel:1548: -14.656730651855469 <- z -> 0.0
10:53:46 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:46 DEBUG opendrift.models.basemodel:836: Lifting 198 elements to seafloor.
10:53:46 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:46 INFO opendrift.models.basemodel:2882: 2023-08-22 00:22:19.552469 - step 82 of 216 - 2847 active elements (0 deactivated)
10:53:46 DEBUG opendrift.models.basemodel:2888: 7153 elements scheduled.
10:53:46 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:46 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:46 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:46 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:46 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:46 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:46 DEBUG opendrift.models.basemodel:1253: Data needed for 2847 elements
10:53:46 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:46 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:46 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:46 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:46 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:46 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:46 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:46 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:46 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:46 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:46 DEBUG opendrift.models.basemodel:1253: Data needed for 2847 elements
10:53:46 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:46 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 00:00:00 (before)
2023-08-22 01:00:00 (after)
10:53:47 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:47 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:47 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:47 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:47 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:47 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:47 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x21x5) for time after (2023-08-22 01:00:00)
10:53:47 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 00:00:00) in space (linearNDFast)
10:53:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:47 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 01:00:00) in space (linearNDFast)
10:53:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1242 elements, expanding data 1
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1242 elements, expanding data 1
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1336 elements, expanding data 1
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 202 elements, expanding data 2
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1336 elements, expanding data 1
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 202 elements, expanding data 2
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1336 elements, expanding data 1
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 202 elements, expanding data 2
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1336 elements, expanding data 1
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 202 elements, expanding data 2
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1336 elements, expanding data 1
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 202 elements, expanding data 2
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1962 elements, expanding data 1
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 566 elements, expanding data 2
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1962 elements, expanding data 1
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 566 elements, expanding data 2
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1962 elements, expanding data 1
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 566 elements, expanding data 2
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1962 elements, expanding data 1
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 566 elements, expanding data 2
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1962 elements, expanding data 1
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 566 elements, expanding data 2
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1242 elements, expanding data 1
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1242 elements, expanding data 1
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1242 elements, expanding data 1
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1242 elements, expanding data 1
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1242 elements, expanding data 1
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:53:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:47 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 00:00:00, weight 0.63) and
after (2023-08-22 01:00:00, weight 0.37) in time
10:53:47 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06764736772755 and -58.973717935894484 degrees.
10:53:47 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06764736772755 and -58.973717935894484 degrees.
10:53:47 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:47 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:47 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:47 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:47 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:47 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:47 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.652241 (min) 1.04953 (max)
10:53:47 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.925358 (min) 1.06714 (max)
10:53:47 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000443823 (min) 0.000255571 (max)
10:53:47 DEBUG opendrift.models.basemodel:1524: x_wind: -4.04668 (min) 9.82803 (max)
10:53:47 DEBUG opendrift.models.basemodel:1524: y_wind: -6.68793 (min) 7.12539 (max)
10:53:47 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:47 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:47 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:47 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:47 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:47 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:47 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:47 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.1111 (max)
10:53:47 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:47 DEBUG opendrift.models.basemodel:1527: 2847 active elements
10:53:47 DEBUG opendrift.models.basemodel:1538: 59.10835603882899 <- latitude -> 59.18818002446079
10:53:47 DEBUG opendrift.models.basemodel:1543: 10.932363206768283 <- longitude -> 11.026292598613681
10:53:47 DEBUG opendrift.models.basemodel:1548: -14.656730651855469 <- z -> 0.0
10:53:47 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:47 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:47 DEBUG opendrift.models.physics_methods:940: min: 0.071289, mean: 3.287780, max: 8.878640
10:53:47 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.071289, mean: 3.287780, max: 8.878640
10:53:47 DEBUG opendrift.models.basemodel:813: 371 elements hit coastline, moving back to water
10:53:47 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:53:47 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:47 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:47 DEBUG opendrift.models.physics_methods:741: Advecting 36 of 2847 elements above 0.100m with wind-sheared ocean current (0.005456 m/s - 0.163198 m/s)
10:53:47 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:47 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:47 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.09754688872249603
10:53:47 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:47 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:47 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:47 DEBUG opendrift.models.oceandrift:572: 327 elements penetrated seafloor, lifting up
10:53:47 DEBUG opendrift.models.oceandrift:590: 31 elements reached seafloor, set to bottom
10:53:47 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
10:53:47 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
10:53:47 DEBUG opendrift.models.oceandrift:572: 239 elements penetrated seafloor, lifting up
10:53:47 DEBUG opendrift.models.oceandrift:590: 40 elements reached seafloor, set to bottom
10:53:47 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
10:53:47 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
10:53:47 DEBUG opendrift.models.oceandrift:572: 222 elements penetrated seafloor, lifting up
10:53:47 DEBUG opendrift.models.oceandrift:590: 31 elements reached seafloor, set to bottom
10:53:47 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
10:53:47 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
10:53:47 DEBUG opendrift.models.oceandrift:572: 207 elements penetrated seafloor, lifting up
10:53:47 DEBUG opendrift.models.oceandrift:590: 28 elements reached seafloor, set to bottom
10:53:47 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
10:53:47 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
10:53:47 DEBUG opendrift.models.oceandrift:572: 236 elements penetrated seafloor, lifting up
10:53:47 DEBUG opendrift.models.oceandrift:590: 29 elements reached seafloor, set to bottom
10:53:47 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
10:53:47 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
10:53:47 DEBUG opendrift.models.oceandrift:572: 192 elements penetrated seafloor, lifting up
10:53:47 DEBUG opendrift.models.oceandrift:590: 31 elements reached seafloor, set to bottom
10:53:47 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
10:53:47 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
10:53:47 DEBUG opendrift.models.oceandrift:572: 194 elements penetrated seafloor, lifting up
10:53:47 DEBUG opendrift.models.oceandrift:590: 31 elements reached seafloor, set to bottom
10:53:47 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
10:53:47 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
10:53:47 DEBUG opendrift.models.oceandrift:572: 188 elements penetrated seafloor, lifting up
10:53:47 DEBUG opendrift.models.oceandrift:590: 28 elements reached seafloor, set to bottom
10:53:47 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
10:53:47 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
10:53:47 DEBUG opendrift.models.oceandrift:572: 196 elements penetrated seafloor, lifting up
10:53:47 DEBUG opendrift.models.oceandrift:590: 26 elements reached seafloor, set to bottom
10:53:47 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
10:53:47 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
10:53:47 DEBUG opendrift.models.oceandrift:572: 186 elements penetrated seafloor, lifting up
10:53:47 DEBUG opendrift.models.oceandrift:590: 22 elements reached seafloor, set to bottom
10:53:47 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
10:53:47 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
10:53:47 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:47 DEBUG opendrift.models.basemodel:2945: 2847 active elements (0 deactivated)
10:53:47 DEBUG opendrift.models.basemodel:1658: to be seeded: 7153, already seeded 2847
10:53:47 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:47 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:47 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:47 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:47 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:47 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:47 DEBUG opendrift.models.basemodel:1253: Data needed for 2882 elements
10:53:47 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:47 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 00:00:00 (before)
2023-08-22 01:00:00 (after)
10:53:47 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 00:00:00) in space (linearNDFast)
10:53:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:47 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:47 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:47 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:47 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:47 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:47 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.0597 (max)
10:53:47 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:47 DEBUG opendrift.models.basemodel:1527: 2882 active elements
10:53:47 DEBUG opendrift.models.basemodel:1538: 59.108324777232966 <- latitude -> 59.18706546197985
10:53:47 DEBUG opendrift.models.basemodel:1543: 10.934012831738256 <- longitude -> 11.02773494287302
10:53:47 DEBUG opendrift.models.basemodel:1548: -14.646730651855469 <- z -> 0.0
10:53:47 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:47 DEBUG opendrift.models.basemodel:836: Lifting 223 elements to seafloor.
10:53:47 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:47 INFO opendrift.models.basemodel:2882: 2023-08-22 00:32:19.552469 - step 83 of 216 - 2882 active elements (0 deactivated)
10:53:47 DEBUG opendrift.models.basemodel:2888: 7118 elements scheduled.
10:53:47 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:47 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:47 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:47 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:47 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:47 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:47 DEBUG opendrift.models.basemodel:1253: Data needed for 2882 elements
10:53:47 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:47 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:47 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:47 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:47 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:47 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:47 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:47 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:47 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:47 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:47 DEBUG opendrift.models.basemodel:1253: Data needed for 2882 elements
10:53:47 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:47 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 00:00:00 (before)
2023-08-22 01:00:00 (after)
10:53:48 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:48 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:48 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:48 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:48 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:48 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:48 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x21x5) for time after (2023-08-22 01:00:00)
10:53:48 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 00:00:00) in space (linearNDFast)
10:53:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:48 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 01:00:00) in space (linearNDFast)
10:53:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1278 elements, expanding data 1
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1278 elements, expanding data 1
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1376 elements, expanding data 1
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 199 elements, expanding data 2
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1376 elements, expanding data 1
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 199 elements, expanding data 2
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1376 elements, expanding data 1
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 199 elements, expanding data 2
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1376 elements, expanding data 1
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 199 elements, expanding data 2
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1376 elements, expanding data 1
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 199 elements, expanding data 2
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1990 elements, expanding data 1
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 600 elements, expanding data 2
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1990 elements, expanding data 1
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 600 elements, expanding data 2
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1990 elements, expanding data 1
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 600 elements, expanding data 2
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1990 elements, expanding data 1
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 600 elements, expanding data 2
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1990 elements, expanding data 1
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 600 elements, expanding data 2
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1278 elements, expanding data 1
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1278 elements, expanding data 1
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1278 elements, expanding data 1
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1278 elements, expanding data 1
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1278 elements, expanding data 1
10:53:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 2
10:53:48 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 00:00:00, weight 0.46) and
after (2023-08-22 01:00:00, weight 0.54) in time
10:53:48 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.065997742139906 and -58.97227560605731 degrees.
10:53:48 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.065997742139906 and -58.97227560605731 degrees.
10:53:48 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:48 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:48 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:48 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:48 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:48 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:48 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.704296 (min) 1.05275 (max)
10:53:48 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.882209 (min) 0.774314 (max)
10:53:48 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000305168 (min) 0.000268931 (max)
10:53:48 DEBUG opendrift.models.basemodel:1524: x_wind: -3.81251 (min) 11.3002 (max)
10:53:48 DEBUG opendrift.models.basemodel:1524: y_wind: -5.54442 (min) 7.74737 (max)
10:53:48 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:48 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:48 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:48 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:48 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:48 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:48 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:48 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.0597 (max)
10:53:48 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:48 DEBUG opendrift.models.basemodel:1527: 2882 active elements
10:53:48 DEBUG opendrift.models.basemodel:1538: 59.108324777232966 <- latitude -> 59.18706546197985
10:53:48 DEBUG opendrift.models.basemodel:1543: 10.934012831738256 <- longitude -> 11.02773494287302
10:53:48 DEBUG opendrift.models.basemodel:1548: -14.646730651855469 <- z -> 0.0
10:53:48 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:48 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:48 DEBUG opendrift.models.physics_methods:940: min: 0.073577, mean: 3.359543, max: 9.783409
10:53:48 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.073577, mean: 3.359543, max: 9.783409
10:53:48 DEBUG opendrift.models.basemodel:813: 374 elements hit coastline, moving back to water
10:53:48 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:53:48 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:48 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:48 DEBUG opendrift.models.physics_methods:741: Advecting 38 of 2882 elements above 0.100m with wind-sheared ocean current (0.002181 m/s - 0.133900 m/s)
10:53:48 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:48 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:48 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.11843984177930832
10:53:48 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:48 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:48 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:48 DEBUG opendrift.models.oceandrift:572: 321 elements penetrated seafloor, lifting up
10:53:48 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:53:48 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:53:48 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:53:48 DEBUG opendrift.models.oceandrift:572: 247 elements penetrated seafloor, lifting up
10:53:48 DEBUG opendrift.models.oceandrift:590: 30 elements reached seafloor, set to bottom
10:53:48 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
10:53:48 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
10:53:48 DEBUG opendrift.models.oceandrift:572: 243 elements penetrated seafloor, lifting up
10:53:48 DEBUG opendrift.models.oceandrift:590: 36 elements reached seafloor, set to bottom
10:53:48 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
10:53:48 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
10:53:48 DEBUG opendrift.models.oceandrift:572: 207 elements penetrated seafloor, lifting up
10:53:48 DEBUG opendrift.models.oceandrift:590: 27 elements reached seafloor, set to bottom
10:53:48 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
10:53:48 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
10:53:48 DEBUG opendrift.models.oceandrift:572: 210 elements penetrated seafloor, lifting up
10:53:48 DEBUG opendrift.models.oceandrift:590: 27 elements reached seafloor, set to bottom
10:53:48 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
10:53:48 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
10:53:48 DEBUG opendrift.models.oceandrift:572: 195 elements penetrated seafloor, lifting up
10:53:48 DEBUG opendrift.models.oceandrift:590: 22 elements reached seafloor, set to bottom
10:53:48 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
10:53:48 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
10:53:48 DEBUG opendrift.models.oceandrift:572: 200 elements penetrated seafloor, lifting up
10:53:48 DEBUG opendrift.models.oceandrift:590: 23 elements reached seafloor, set to bottom
10:53:48 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
10:53:48 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
10:53:48 DEBUG opendrift.models.oceandrift:572: 190 elements penetrated seafloor, lifting up
10:53:48 DEBUG opendrift.models.oceandrift:590: 28 elements reached seafloor, set to bottom
10:53:48 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
10:53:48 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
10:53:48 DEBUG opendrift.models.oceandrift:572: 194 elements penetrated seafloor, lifting up
10:53:48 DEBUG opendrift.models.oceandrift:590: 29 elements reached seafloor, set to bottom
10:53:48 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
10:53:48 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
10:53:48 DEBUG opendrift.models.oceandrift:572: 197 elements penetrated seafloor, lifting up
10:53:48 DEBUG opendrift.models.oceandrift:590: 23 elements reached seafloor, set to bottom
10:53:48 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
10:53:48 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
10:53:48 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:48 DEBUG opendrift.models.basemodel:2945: 2882 active elements (0 deactivated)
10:53:48 DEBUG opendrift.models.basemodel:1658: to be seeded: 7118, already seeded 2882
10:53:48 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:48 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:48 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:48 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:48 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:48 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:48 DEBUG opendrift.models.basemodel:1253: Data needed for 2917 elements
10:53:48 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:48 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 00:00:00 (before)
2023-08-22 01:00:00 (after)
10:53:48 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 00:00:00) in space (linearNDFast)
10:53:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:48 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:48 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:48 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:48 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:48 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:48 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.1619 (max)
10:53:48 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:48 DEBUG opendrift.models.basemodel:1527: 2917 active elements
10:53:48 DEBUG opendrift.models.basemodel:1538: 59.106797745613164 <- latitude -> 59.18678194364796
10:53:48 DEBUG opendrift.models.basemodel:1543: 10.931363815201433 <- longitude -> 11.030017410038287
10:53:48 DEBUG opendrift.models.basemodel:1548: -14.327008952549992 <- z -> 0.0
10:53:48 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:48 DEBUG opendrift.models.basemodel:836: Lifting 194 elements to seafloor.
10:53:48 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:48 INFO opendrift.models.basemodel:2882: 2023-08-22 00:42:19.552469 - step 84 of 216 - 2917 active elements (0 deactivated)
10:53:48 DEBUG opendrift.models.basemodel:2888: 7083 elements scheduled.
10:53:48 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:48 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:48 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:48 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:48 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:48 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:48 DEBUG opendrift.models.basemodel:1253: Data needed for 2917 elements
10:53:48 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:48 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:48 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:48 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:48 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:48 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:48 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:48 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:48 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:48 DEBUG opendrift.models.basemodel:1253: Data needed for 2917 elements
10:53:48 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:48 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 00:00:00 (before)
2023-08-22 01:00:00 (after)
10:53:49 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:49 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:49 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:49 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:49 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:49 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:49 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x22x5) for time after (2023-08-22 01:00:00)
10:53:49 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 00:00:00) in space (linearNDFast)
10:53:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:49 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 01:00:00) in space (linearNDFast)
10:53:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1298 elements, expanding data 1
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1298 elements, expanding data 1
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1416 elements, expanding data 1
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 204 elements, expanding data 2
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1416 elements, expanding data 1
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 204 elements, expanding data 2
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1416 elements, expanding data 1
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 204 elements, expanding data 2
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1416 elements, expanding data 1
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 204 elements, expanding data 2
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1416 elements, expanding data 1
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 204 elements, expanding data 2
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2017 elements, expanding data 1
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 624 elements, expanding data 2
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2017 elements, expanding data 1
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 624 elements, expanding data 2
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2017 elements, expanding data 1
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 624 elements, expanding data 2
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2017 elements, expanding data 1
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 624 elements, expanding data 2
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2017 elements, expanding data 1
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 624 elements, expanding data 2
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1298 elements, expanding data 1
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1298 elements, expanding data 1
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1298 elements, expanding data 1
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1298 elements, expanding data 1
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1298 elements, expanding data 1
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
10:53:49 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 00:00:00, weight 0.29) and
after (2023-08-22 01:00:00, weight 0.71) in time
10:53:49 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06864675477231 and -58.96999313743856 degrees.
10:53:49 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06864675477231 and -58.96999313743856 degrees.
10:53:49 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:49 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:49 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:49 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:49 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:49 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:49 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.77355 (min) 1.22583 (max)
10:53:49 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.989987 (min) 0.841667 (max)
10:53:49 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000370731 (min) 0.000268785 (max)
10:53:49 DEBUG opendrift.models.basemodel:1524: x_wind: -4.64794 (min) 9.57944 (max)
10:53:49 DEBUG opendrift.models.basemodel:1524: y_wind: -5.55686 (min) 7.79261 (max)
10:53:49 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:49 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:49 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:49 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:49 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:49 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:49 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:49 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.1619 (max)
10:53:49 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:49 DEBUG opendrift.models.basemodel:1527: 2917 active elements
10:53:49 DEBUG opendrift.models.basemodel:1538: 59.106797745613164 <- latitude -> 59.18678194364796
10:53:49 DEBUG opendrift.models.basemodel:1543: 10.931363815201433 <- longitude -> 11.030017410038287
10:53:49 DEBUG opendrift.models.basemodel:1548: -14.327008952549992 <- z -> 0.0
10:53:49 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:49 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:49 DEBUG opendrift.models.physics_methods:940: min: 0.090532, mean: 3.318123, max: 8.555806
10:53:49 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.090532, mean: 3.318123, max: 8.555806
10:53:49 DEBUG opendrift.models.basemodel:813: 362 elements hit coastline, moving back to water
10:53:49 DEBUG opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
10:53:49 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:49 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:49 DEBUG opendrift.models.physics_methods:741: Advecting 35 of 2917 elements above 0.100m with wind-sheared ocean current (0.020020 m/s - 0.159798 m/s)
10:53:49 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:49 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:49 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.09058240036828995
10:53:49 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:49 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:49 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:49 DEBUG opendrift.models.oceandrift:572: 327 elements penetrated seafloor, lifting up
10:53:49 DEBUG opendrift.models.oceandrift:590: 32 elements reached seafloor, set to bottom
10:53:49 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
10:53:49 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
10:53:49 DEBUG opendrift.models.oceandrift:572: 253 elements penetrated seafloor, lifting up
10:53:49 DEBUG opendrift.models.oceandrift:590: 24 elements reached seafloor, set to bottom
10:53:49 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
10:53:49 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
10:53:49 DEBUG opendrift.models.oceandrift:572: 272 elements penetrated seafloor, lifting up
10:53:49 DEBUG opendrift.models.oceandrift:590: 33 elements reached seafloor, set to bottom
10:53:49 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
10:53:49 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
10:53:49 DEBUG opendrift.models.oceandrift:572: 208 elements penetrated seafloor, lifting up
10:53:49 DEBUG opendrift.models.oceandrift:590: 24 elements reached seafloor, set to bottom
10:53:49 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
10:53:49 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
10:53:49 DEBUG opendrift.models.oceandrift:572: 207 elements penetrated seafloor, lifting up
10:53:49 DEBUG opendrift.models.oceandrift:590: 27 elements reached seafloor, set to bottom
10:53:49 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
10:53:49 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
10:53:49 DEBUG opendrift.models.oceandrift:572: 216 elements penetrated seafloor, lifting up
10:53:49 DEBUG opendrift.models.oceandrift:590: 16 elements reached seafloor, set to bottom
10:53:49 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
10:53:49 DEBUG opendrift.models.sedimentdrift:112: Settling 16 elements at seafloor
10:53:49 DEBUG opendrift.models.oceandrift:572: 223 elements penetrated seafloor, lifting up
10:53:49 DEBUG opendrift.models.oceandrift:590: 25 elements reached seafloor, set to bottom
10:53:49 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
10:53:49 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
10:53:49 DEBUG opendrift.models.oceandrift:572: 203 elements penetrated seafloor, lifting up
10:53:49 DEBUG opendrift.models.oceandrift:590: 23 elements reached seafloor, set to bottom
10:53:49 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
10:53:49 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
10:53:49 DEBUG opendrift.models.oceandrift:572: 199 elements penetrated seafloor, lifting up
10:53:49 DEBUG opendrift.models.oceandrift:590: 40 elements reached seafloor, set to bottom
10:53:49 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
10:53:49 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
10:53:49 DEBUG opendrift.models.oceandrift:572: 181 elements penetrated seafloor, lifting up
10:53:49 DEBUG opendrift.models.oceandrift:590: 19 elements reached seafloor, set to bottom
10:53:49 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
10:53:49 DEBUG opendrift.models.sedimentdrift:112: Settling 19 elements at seafloor
10:53:49 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:49 DEBUG opendrift.models.basemodel:2945: 2917 active elements (0 deactivated)
10:53:49 DEBUG opendrift.models.basemodel:1658: to be seeded: 7083, already seeded 2917
10:53:49 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:49 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:49 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:49 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:49 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:49 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:49 DEBUG opendrift.models.basemodel:1253: Data needed for 2952 elements
10:53:49 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:49 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 00:00:00 (before)
2023-08-22 01:00:00 (after)
10:53:49 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 00:00:00) in space (linearNDFast)
10:53:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:49 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:49 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:49 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:49 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:49 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:49 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.0813 (max)
10:53:49 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:49 DEBUG opendrift.models.basemodel:1527: 2952 active elements
10:53:49 DEBUG opendrift.models.basemodel:1538: 59.10830293367498 <- latitude -> 59.18959040072834
10:53:49 DEBUG opendrift.models.basemodel:1543: 10.929413909914382 <- longitude -> 11.027108131570317
10:53:49 DEBUG opendrift.models.basemodel:1548: -15.086927825022444 <- z -> 0.0
10:53:49 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:49 DEBUG opendrift.models.basemodel:836: Lifting 228 elements to seafloor.
10:53:49 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:49 INFO opendrift.models.basemodel:2882: 2023-08-22 00:52:19.552469 - step 85 of 216 - 2952 active elements (0 deactivated)
10:53:49 DEBUG opendrift.models.basemodel:2888: 7048 elements scheduled.
10:53:49 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:49 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:49 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:49 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:49 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:49 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:49 DEBUG opendrift.models.basemodel:1253: Data needed for 2952 elements
10:53:49 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:49 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:49 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:49 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:49 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:49 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:49 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:49 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:49 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:49 DEBUG opendrift.models.basemodel:1253: Data needed for 2952 elements
10:53:49 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:49 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 00:00:00 (before)
2023-08-22 01:00:00 (after)
10:53:49 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:49 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:49 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:49 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:49 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:49 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:49 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x22x6) for time after (2023-08-22 01:00:00)
10:53:49 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 00:00:00) in space (linearNDFast)
10:53:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:49 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 01:00:00) in space (linearNDFast)
10:53:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1351 elements, expanding data 1
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1351 elements, expanding data 1
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1463 elements, expanding data 1
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1463 elements, expanding data 1
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1463 elements, expanding data 1
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1463 elements, expanding data 1
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1463 elements, expanding data 1
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1463 elements, expanding data 1
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
10:53:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2064 elements, expanding data 1
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 660 elements, expanding data 2
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2064 elements, expanding data 1
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 660 elements, expanding data 2
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2064 elements, expanding data 1
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 660 elements, expanding data 2
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2064 elements, expanding data 1
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 660 elements, expanding data 2
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2064 elements, expanding data 1
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 660 elements, expanding data 2
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2064 elements, expanding data 1
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 660 elements, expanding data 2
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1351 elements, expanding data 1
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1351 elements, expanding data 1
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1351 elements, expanding data 1
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1351 elements, expanding data 1
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1351 elements, expanding data 1
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1351 elements, expanding data 1
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:53:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:50 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 00:00:00, weight 0.13) and
after (2023-08-22 01:00:00, weight 0.87) in time
10:53:50 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07059665056104 and -58.972902411169564 degrees.
10:53:50 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07059665056104 and -58.972902411169564 degrees.
10:53:50 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:50 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:50 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:50 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:50 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:50 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:50 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.838999 (min) 1.14328 (max)
10:53:50 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.974652 (min) 0.876842 (max)
10:53:50 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000355778 (min) 0.000237999 (max)
10:53:50 DEBUG opendrift.models.basemodel:1524: x_wind: -3.68691 (min) 10.1573 (max)
10:53:50 DEBUG opendrift.models.basemodel:1524: y_wind: -7.25012 (min) 7.01809 (max)
10:53:50 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:50 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:50 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:50 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:50 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:50 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:50 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:50 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.0813 (max)
10:53:50 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:50 DEBUG opendrift.models.basemodel:1527: 2952 active elements
10:53:50 DEBUG opendrift.models.basemodel:1538: 59.10830293367498 <- latitude -> 59.18959040072834
10:53:50 DEBUG opendrift.models.basemodel:1543: 10.929413909914382 <- longitude -> 11.027108131570317
10:53:50 DEBUG opendrift.models.basemodel:1548: -15.081292152404785 <- z -> 0.0
10:53:50 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:50 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:50 DEBUG opendrift.models.physics_methods:940: min: 0.083449, mean: 3.333318, max: 8.923849
10:53:50 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.083449, mean: 3.333318, max: 8.923849
10:53:50 DEBUG opendrift.models.basemodel:813: 419 elements hit coastline, moving back to water
10:53:50 DEBUG opendrift.models.basemodel:836: Lifting 8 elements to seafloor.
10:53:50 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:50 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:50 DEBUG opendrift.models.physics_methods:741: Advecting 39 of 2952 elements above 0.100m with wind-sheared ocean current (0.011858 m/s - 0.141649 m/s)
10:53:50 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:50 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:50 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.09854276649816512
10:53:50 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:50 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:50 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:50 DEBUG opendrift.models.oceandrift:572: 329 elements penetrated seafloor, lifting up
10:53:50 DEBUG opendrift.models.oceandrift:590: 39 elements reached seafloor, set to bottom
10:53:50 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
10:53:50 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
10:53:50 DEBUG opendrift.models.oceandrift:572: 247 elements penetrated seafloor, lifting up
10:53:50 DEBUG opendrift.models.oceandrift:590: 36 elements reached seafloor, set to bottom
10:53:50 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
10:53:50 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
10:53:50 DEBUG opendrift.models.oceandrift:572: 238 elements penetrated seafloor, lifting up
10:53:50 DEBUG opendrift.models.oceandrift:590: 29 elements reached seafloor, set to bottom
10:53:50 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
10:53:50 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
10:53:50 DEBUG opendrift.models.oceandrift:572: 224 elements penetrated seafloor, lifting up
10:53:50 DEBUG opendrift.models.oceandrift:590: 32 elements reached seafloor, set to bottom
10:53:50 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
10:53:50 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
10:53:50 DEBUG opendrift.models.oceandrift:572: 206 elements penetrated seafloor, lifting up
10:53:50 DEBUG opendrift.models.oceandrift:590: 22 elements reached seafloor, set to bottom
10:53:50 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
10:53:50 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
10:53:50 DEBUG opendrift.models.oceandrift:572: 222 elements penetrated seafloor, lifting up
10:53:50 DEBUG opendrift.models.oceandrift:590: 23 elements reached seafloor, set to bottom
10:53:50 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
10:53:50 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
10:53:50 DEBUG opendrift.models.oceandrift:572: 246 elements penetrated seafloor, lifting up
10:53:50 DEBUG opendrift.models.oceandrift:590: 39 elements reached seafloor, set to bottom
10:53:50 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
10:53:50 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
10:53:50 DEBUG opendrift.models.oceandrift:572: 211 elements penetrated seafloor, lifting up
10:53:50 DEBUG opendrift.models.oceandrift:590: 30 elements reached seafloor, set to bottom
10:53:50 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
10:53:50 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
10:53:50 DEBUG opendrift.models.oceandrift:572: 201 elements penetrated seafloor, lifting up
10:53:50 DEBUG opendrift.models.oceandrift:590: 28 elements reached seafloor, set to bottom
10:53:50 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
10:53:50 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
10:53:50 DEBUG opendrift.models.oceandrift:572: 194 elements penetrated seafloor, lifting up
10:53:50 DEBUG opendrift.models.oceandrift:590: 21 elements reached seafloor, set to bottom
10:53:50 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
10:53:50 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
10:53:50 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:50 DEBUG opendrift.models.basemodel:2945: 2952 active elements (0 deactivated)
10:53:50 DEBUG opendrift.models.basemodel:1658: to be seeded: 7048, already seeded 2952
10:53:50 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:53:50 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:50 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:50 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:50 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:50 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:50 DEBUG opendrift.models.basemodel:1253: Data needed for 2986 elements
10:53:50 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:50 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 01:00:00 (before)
2023-08-22 02:00:00 (after)
10:53:50 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 01:00:00) in space (linearNDFast)
10:53:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:50 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:50 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:50 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:50 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:50 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:50 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.1088 (max)
10:53:50 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:50 DEBUG opendrift.models.basemodel:1527: 2986 active elements
10:53:50 DEBUG opendrift.models.basemodel:1538: 59.10748858157211 <- latitude -> 59.18867548627849
10:53:50 DEBUG opendrift.models.basemodel:1543: 10.93232303750815 <- longitude -> 11.025392448544824
10:53:50 DEBUG opendrift.models.basemodel:1548: -14.275833358764649 <- z -> 0.0
10:53:50 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:50 DEBUG opendrift.models.basemodel:836: Lifting 216 elements to seafloor.
10:53:50 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:50 INFO opendrift.models.basemodel:2882: 2023-08-22 01:02:19.552469 - step 86 of 216 - 2986 active elements (0 deactivated)
10:53:50 DEBUG opendrift.models.basemodel:2888: 7014 elements scheduled.
10:53:50 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:50 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:50 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:50 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:50 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:50 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:50 DEBUG opendrift.models.basemodel:1253: Data needed for 2986 elements
10:53:50 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:50 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:50 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:50 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:50 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:50 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:50 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:50 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:50 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:50 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:50 DEBUG opendrift.models.basemodel:1253: Data needed for 2986 elements
10:53:50 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:50 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 01:00:00 (before)
2023-08-22 02:00:00 (after)
10:53:51 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:51 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:51 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:51 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:51 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:51 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:51 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-08-22 02:00:00)
10:53:51 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 01:00:00) in space (linearNDFast)
10:53:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:51 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 02:00:00) in space (linearNDFast)
10:53:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1383 elements, expanding data 1
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1383 elements, expanding data 1
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1496 elements, expanding data 1
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 228 elements, expanding data 2
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1496 elements, expanding data 1
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 228 elements, expanding data 2
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1496 elements, expanding data 1
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 228 elements, expanding data 2
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1496 elements, expanding data 1
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 228 elements, expanding data 2
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1496 elements, expanding data 1
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 228 elements, expanding data 2
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2109 elements, expanding data 1
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 673 elements, expanding data 2
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2109 elements, expanding data 1
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 673 elements, expanding data 2
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2109 elements, expanding data 1
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 673 elements, expanding data 2
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2109 elements, expanding data 1
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 673 elements, expanding data 2
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2109 elements, expanding data 1
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 673 elements, expanding data 2
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1383 elements, expanding data 1
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1383 elements, expanding data 1
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1383 elements, expanding data 1
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1383 elements, expanding data 1
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1383 elements, expanding data 1
10:53:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:53:51 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 01:00:00, weight 0.96) and
after (2023-08-22 02:00:00, weight 0.04) in time
10:53:51 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.067687518987285 and -58.97461810480346 degrees.
10:53:51 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.067687518987285 and -58.97461810480346 degrees.
10:53:51 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:51 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:51 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:51 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:51 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:51 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:51 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.761713 (min) 1.34984 (max)
10:53:51 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.05014 (min) 0.735716 (max)
10:53:51 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000350625 (min) 0.00030302 (max)
10:53:51 DEBUG opendrift.models.basemodel:1524: x_wind: -4.57066 (min) 9.32636 (max)
10:53:51 DEBUG opendrift.models.basemodel:1524: y_wind: -5.8809 (min) 7.77397 (max)
10:53:51 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:51 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:51 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:51 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:51 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:51 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:51 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:51 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.1088 (max)
10:53:51 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:51 DEBUG opendrift.models.basemodel:1527: 2986 active elements
10:53:51 DEBUG opendrift.models.basemodel:1538: 59.10748858157211 <- latitude -> 59.18867548627849
10:53:51 DEBUG opendrift.models.basemodel:1543: 10.93232303750815 <- longitude -> 11.025392448544824
10:53:51 DEBUG opendrift.models.basemodel:1548: -14.21568775177002 <- z -> 0.0
10:53:51 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:51 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:51 DEBUG opendrift.models.physics_methods:940: min: 0.034289, mean: 3.284420, max: 8.442016
10:53:51 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.034289, mean: 3.284420, max: 8.442016
10:53:51 DEBUG opendrift.models.basemodel:813: 410 elements hit coastline, moving back to water
10:53:51 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
10:53:51 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:51 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:51 DEBUG opendrift.models.physics_methods:741: Advecting 34 of 2986 elements above 0.100m with wind-sheared ocean current (0.007969 m/s - 0.148169 m/s)
10:53:51 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:51 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:51 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.08818907336671829
10:53:51 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:51 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:51 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:51 DEBUG opendrift.models.oceandrift:572: 338 elements penetrated seafloor, lifting up
10:53:51 DEBUG opendrift.models.oceandrift:590: 38 elements reached seafloor, set to bottom
10:53:51 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
10:53:51 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
10:53:51 DEBUG opendrift.models.oceandrift:572: 268 elements penetrated seafloor, lifting up
10:53:51 DEBUG opendrift.models.oceandrift:590: 40 elements reached seafloor, set to bottom
10:53:51 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
10:53:51 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
10:53:51 DEBUG opendrift.models.oceandrift:572: 215 elements penetrated seafloor, lifting up
10:53:51 DEBUG opendrift.models.oceandrift:590: 37 elements reached seafloor, set to bottom
10:53:51 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
10:53:51 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
10:53:51 DEBUG opendrift.models.oceandrift:572: 206 elements penetrated seafloor, lifting up
10:53:51 DEBUG opendrift.models.oceandrift:590: 36 elements reached seafloor, set to bottom
10:53:51 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
10:53:51 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
10:53:51 DEBUG opendrift.models.oceandrift:572: 221 elements penetrated seafloor, lifting up
10:53:51 DEBUG opendrift.models.oceandrift:590: 29 elements reached seafloor, set to bottom
10:53:51 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
10:53:51 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
10:53:51 DEBUG opendrift.models.oceandrift:572: 236 elements penetrated seafloor, lifting up
10:53:51 DEBUG opendrift.models.oceandrift:590: 30 elements reached seafloor, set to bottom
10:53:51 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
10:53:51 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
10:53:51 DEBUG opendrift.models.oceandrift:572: 206 elements penetrated seafloor, lifting up
10:53:51 DEBUG opendrift.models.oceandrift:590: 38 elements reached seafloor, set to bottom
10:53:51 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
10:53:51 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
10:53:51 DEBUG opendrift.models.oceandrift:572: 206 elements penetrated seafloor, lifting up
10:53:51 DEBUG opendrift.models.oceandrift:590: 18 elements reached seafloor, set to bottom
10:53:51 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
10:53:51 DEBUG opendrift.models.sedimentdrift:112: Settling 18 elements at seafloor
10:53:51 DEBUG opendrift.models.oceandrift:572: 226 elements penetrated seafloor, lifting up
10:53:51 DEBUG opendrift.models.oceandrift:590: 27 elements reached seafloor, set to bottom
10:53:51 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
10:53:51 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
10:53:51 DEBUG opendrift.models.oceandrift:572: 208 elements penetrated seafloor, lifting up
10:53:51 DEBUG opendrift.models.oceandrift:590: 42 elements reached seafloor, set to bottom
10:53:51 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
10:53:51 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
10:53:51 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:51 DEBUG opendrift.models.basemodel:2945: 2986 active elements (0 deactivated)
10:53:51 DEBUG opendrift.models.basemodel:1658: to be seeded: 7014, already seeded 2986
10:53:51 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:51 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:51 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:51 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:51 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:51 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:51 DEBUG opendrift.models.basemodel:1253: Data needed for 3021 elements
10:53:51 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:51 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 01:00:00 (before)
2023-08-22 02:00:00 (after)
10:53:51 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 01:00:00) in space (linearNDFast)
10:53:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:51 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:51 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:51 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:51 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:51 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:51 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.0911 (max)
10:53:51 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:51 DEBUG opendrift.models.basemodel:1527: 3021 active elements
10:53:51 DEBUG opendrift.models.basemodel:1538: 59.10732187875522 <- latitude -> 59.1894075386513
10:53:51 DEBUG opendrift.models.basemodel:1543: 10.932810391361697 <- longitude -> 11.027346366179227
10:53:51 DEBUG opendrift.models.basemodel:1548: -15.09880184173584 <- z -> 0.0
10:53:51 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:51 DEBUG opendrift.models.basemodel:836: Lifting 233 elements to seafloor.
10:53:51 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:51 INFO opendrift.models.basemodel:2882: 2023-08-22 01:12:19.552469 - step 87 of 216 - 3021 active elements (0 deactivated)
10:53:51 DEBUG opendrift.models.basemodel:2888: 6979 elements scheduled.
10:53:51 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:51 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:51 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:51 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:51 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:51 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:51 DEBUG opendrift.models.basemodel:1253: Data needed for 3021 elements
10:53:51 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:51 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:51 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:51 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:51 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:51 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:51 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:51 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:51 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:51 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:51 DEBUG opendrift.models.basemodel:1253: Data needed for 3021 elements
10:53:51 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:51 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 01:00:00 (before)
2023-08-22 02:00:00 (after)
10:53:52 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:52 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:52 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:52 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:52 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:52 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:52 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x6) for time after (2023-08-22 02:00:00)
10:53:52 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 01:00:00) in space (linearNDFast)
10:53:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:52 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 02:00:00) in space (linearNDFast)
10:53:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1403 elements, expanding data 1
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1403 elements, expanding data 1
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1522 elements, expanding data 1
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 219 elements, expanding data 2
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 3
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1522 elements, expanding data 1
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 219 elements, expanding data 2
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 3
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1522 elements, expanding data 1
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 219 elements, expanding data 2
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 3
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1522 elements, expanding data 1
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 219 elements, expanding data 2
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 3
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1522 elements, expanding data 1
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 219 elements, expanding data 2
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 3
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1522 elements, expanding data 1
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 219 elements, expanding data 2
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 12 elements, expanding data 3
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2144 elements, expanding data 1
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 681 elements, expanding data 2
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2144 elements, expanding data 1
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 681 elements, expanding data 2
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2144 elements, expanding data 1
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 681 elements, expanding data 2
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2144 elements, expanding data 1
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 681 elements, expanding data 2
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2144 elements, expanding data 1
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 681 elements, expanding data 2
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2144 elements, expanding data 1
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 681 elements, expanding data 2
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1403 elements, expanding data 1
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1403 elements, expanding data 1
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1403 elements, expanding data 1
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1403 elements, expanding data 1
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1403 elements, expanding data 1
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1403 elements, expanding data 1
10:53:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
10:53:52 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 01:00:00, weight 0.79) and
after (2023-08-22 02:00:00, weight 0.21) in time
10:53:52 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06720017020885 and -58.97266417674346 degrees.
10:53:52 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06720017020885 and -58.97266417674346 degrees.
10:53:52 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:52 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:52 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:52 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:52 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:52 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:52 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.86178 (min) 1.04298 (max)
10:53:52 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.941653 (min) 0.890294 (max)
10:53:52 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000445872 (min) 0.000296339 (max)
10:53:52 DEBUG opendrift.models.basemodel:1524: x_wind: -4.29988 (min) 10.5339 (max)
10:53:52 DEBUG opendrift.models.basemodel:1524: y_wind: -5.57795 (min) 7.1818 (max)
10:53:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:52 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:52 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:52 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:52 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.0911 (max)
10:53:52 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:52 DEBUG opendrift.models.basemodel:1527: 3021 active elements
10:53:52 DEBUG opendrift.models.basemodel:1538: 59.10732187875522 <- latitude -> 59.1894075386513
10:53:52 DEBUG opendrift.models.basemodel:1543: 10.932810391361697 <- longitude -> 11.027346366179227
10:53:52 DEBUG opendrift.models.basemodel:1548: -15.038932800292969 <- z -> 0.0
10:53:52 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:52 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:52 DEBUG opendrift.models.physics_methods:940: min: 0.031188, mean: 3.313644, max: 9.325180
10:53:52 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.031188, mean: 3.313644, max: 9.325180
10:53:52 DEBUG opendrift.models.basemodel:813: 390 elements hit coastline, moving back to water
10:53:52 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:53:52 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:52 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:52 DEBUG opendrift.models.physics_methods:741: Advecting 38 of 3021 elements above 0.100m with wind-sheared ocean current (0.016041 m/s - 0.114127 m/s)
10:53:52 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:52 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:52 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.10760520747001648
10:53:52 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:52 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:52 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:52 DEBUG opendrift.models.oceandrift:572: 350 elements penetrated seafloor, lifting up
10:53:52 DEBUG opendrift.models.oceandrift:590: 32 elements reached seafloor, set to bottom
10:53:52 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
10:53:52 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
10:53:52 DEBUG opendrift.models.oceandrift:572: 260 elements penetrated seafloor, lifting up
10:53:52 DEBUG opendrift.models.oceandrift:590: 41 elements reached seafloor, set to bottom
10:53:52 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
10:53:52 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
10:53:52 DEBUG opendrift.models.oceandrift:572: 259 elements penetrated seafloor, lifting up
10:53:52 DEBUG opendrift.models.oceandrift:590: 32 elements reached seafloor, set to bottom
10:53:52 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
10:53:52 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
10:53:52 DEBUG opendrift.models.oceandrift:572: 237 elements penetrated seafloor, lifting up
10:53:52 DEBUG opendrift.models.oceandrift:590: 30 elements reached seafloor, set to bottom
10:53:52 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
10:53:52 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
10:53:52 DEBUG opendrift.models.oceandrift:572: 240 elements penetrated seafloor, lifting up
10:53:52 DEBUG opendrift.models.oceandrift:590: 24 elements reached seafloor, set to bottom
10:53:52 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
10:53:52 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
10:53:52 DEBUG opendrift.models.oceandrift:572: 227 elements penetrated seafloor, lifting up
10:53:52 DEBUG opendrift.models.oceandrift:590: 29 elements reached seafloor, set to bottom
10:53:52 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
10:53:52 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
10:53:52 DEBUG opendrift.models.oceandrift:572: 213 elements penetrated seafloor, lifting up
10:53:52 DEBUG opendrift.models.oceandrift:590: 27 elements reached seafloor, set to bottom
10:53:52 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
10:53:52 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
10:53:52 DEBUG opendrift.models.oceandrift:572: 209 elements penetrated seafloor, lifting up
10:53:52 DEBUG opendrift.models.oceandrift:590: 31 elements reached seafloor, set to bottom
10:53:52 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
10:53:52 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
10:53:52 DEBUG opendrift.models.oceandrift:572: 211 elements penetrated seafloor, lifting up
10:53:52 DEBUG opendrift.models.oceandrift:590: 29 elements reached seafloor, set to bottom
10:53:52 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
10:53:52 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
10:53:52 DEBUG opendrift.models.oceandrift:572: 208 elements penetrated seafloor, lifting up
10:53:52 DEBUG opendrift.models.oceandrift:590: 31 elements reached seafloor, set to bottom
10:53:52 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
10:53:52 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
10:53:52 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:52 DEBUG opendrift.models.basemodel:2945: 3021 active elements (0 deactivated)
10:53:52 DEBUG opendrift.models.basemodel:1658: to be seeded: 6979, already seeded 3021
10:53:52 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:52 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:52 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:52 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:52 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:52 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:52 DEBUG opendrift.models.basemodel:1253: Data needed for 3056 elements
10:53:52 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:52 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 01:00:00 (before)
2023-08-22 02:00:00 (after)
10:53:52 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 01:00:00) in space (linearNDFast)
10:53:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:52 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:52 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:52 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:52 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:52 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:52 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.1191 (max)
10:53:52 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:52 DEBUG opendrift.models.basemodel:1527: 3056 active elements
10:53:52 DEBUG opendrift.models.basemodel:1538: 59.10682614199138 <- latitude -> 59.189124685155065
10:53:52 DEBUG opendrift.models.basemodel:1543: 10.932041874341415 <- longitude -> 11.02694900493994
10:53:52 DEBUG opendrift.models.basemodel:1548: -14.628886146224911 <- z -> 0.0
10:53:52 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:52 DEBUG opendrift.models.basemodel:836: Lifting 228 elements to seafloor.
10:53:52 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:52 INFO opendrift.models.basemodel:2882: 2023-08-22 01:22:19.552469 - step 88 of 216 - 3056 active elements (0 deactivated)
10:53:52 DEBUG opendrift.models.basemodel:2888: 6944 elements scheduled.
10:53:52 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:52 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:52 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:52 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:52 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:52 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:52 DEBUG opendrift.models.basemodel:1253: Data needed for 3056 elements
10:53:52 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:52 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:52 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:52 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:52 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:52 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:52 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:52 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:52 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:52 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:52 DEBUG opendrift.models.basemodel:1253: Data needed for 3056 elements
10:53:52 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:52 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 01:00:00 (before)
2023-08-22 02:00:00 (after)
10:53:53 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:53 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:53 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:53 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:53 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:53 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:53 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x5) for time after (2023-08-22 02:00:00)
10:53:53 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 01:00:00) in space (linearNDFast)
10:53:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:53 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 02:00:00) in space (linearNDFast)
10:53:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1454 elements, expanding data 1
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1454 elements, expanding data 1
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1562 elements, expanding data 1
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1562 elements, expanding data 1
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1562 elements, expanding data 1
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1562 elements, expanding data 1
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1562 elements, expanding data 1
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2178 elements, expanding data 1
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 713 elements, expanding data 2
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2178 elements, expanding data 1
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 713 elements, expanding data 2
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2178 elements, expanding data 1
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 713 elements, expanding data 2
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2178 elements, expanding data 1
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 713 elements, expanding data 2
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2178 elements, expanding data 1
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 713 elements, expanding data 2
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1454 elements, expanding data 1
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1454 elements, expanding data 1
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1454 elements, expanding data 1
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1454 elements, expanding data 1
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1454 elements, expanding data 1
10:53:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
10:53:53 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 01:00:00, weight 0.63) and
after (2023-08-22 02:00:00, weight 0.37) in time
10:53:53 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06796869919101 and -58.97306152887154 degrees.
10:53:53 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.06796869919101 and -58.97306152887154 degrees.
10:53:53 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:53 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:53 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:53 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:53 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:53 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:53 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.78138 (min) 0.974629 (max)
10:53:53 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.978027 (min) 0.815175 (max)
10:53:53 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000377795 (min) 0.000248389 (max)
10:53:53 DEBUG opendrift.models.basemodel:1524: x_wind: -4.706 (min) 10.3157 (max)
10:53:53 DEBUG opendrift.models.basemodel:1524: y_wind: -5.07164 (min) 8.05874 (max)
10:53:53 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:53 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:53 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:53 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:53 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:53 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:53 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:53 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.1191 (max)
10:53:53 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:53 DEBUG opendrift.models.basemodel:1527: 3056 active elements
10:53:53 DEBUG opendrift.models.basemodel:1538: 59.10682614199138 <- latitude -> 59.189124685155065
10:53:53 DEBUG opendrift.models.basemodel:1543: 10.932041874341415 <- longitude -> 11.02694900493994
10:53:53 DEBUG opendrift.models.basemodel:1548: -14.628886146224911 <- z -> 0.0
10:53:53 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:53 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:53 DEBUG opendrift.models.physics_methods:940: min: 0.061551, mean: 3.219493, max: 8.831001
10:53:53 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.061551, mean: 3.219493, max: 8.831001
10:53:53 DEBUG opendrift.models.basemodel:813: 438 elements hit coastline, moving back to water
10:53:53 DEBUG opendrift.models.basemodel:836: Lifting 13 elements to seafloor.
10:53:53 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:53 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:53 DEBUG opendrift.models.physics_methods:741: Advecting 37 of 3056 elements above 0.100m with wind-sheared ocean current (0.003933 m/s - 0.129194 m/s)
10:53:53 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:53 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:53 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.09650295302255629
10:53:53 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:53 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:53 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:53 DEBUG opendrift.models.oceandrift:572: 334 elements penetrated seafloor, lifting up
10:53:53 DEBUG opendrift.models.oceandrift:590: 32 elements reached seafloor, set to bottom
10:53:53 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
10:53:53 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
10:53:53 DEBUG opendrift.models.oceandrift:572: 268 elements penetrated seafloor, lifting up
10:53:53 DEBUG opendrift.models.oceandrift:590: 39 elements reached seafloor, set to bottom
10:53:53 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
10:53:53 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
10:53:53 DEBUG opendrift.models.oceandrift:572: 258 elements penetrated seafloor, lifting up
10:53:53 DEBUG opendrift.models.oceandrift:590: 38 elements reached seafloor, set to bottom
10:53:53 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
10:53:53 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
10:53:53 DEBUG opendrift.models.oceandrift:572: 233 elements penetrated seafloor, lifting up
10:53:53 DEBUG opendrift.models.oceandrift:590: 31 elements reached seafloor, set to bottom
10:53:53 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
10:53:53 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
10:53:53 DEBUG opendrift.models.oceandrift:572: 217 elements penetrated seafloor, lifting up
10:53:53 DEBUG opendrift.models.oceandrift:590: 32 elements reached seafloor, set to bottom
10:53:53 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
10:53:53 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
10:53:53 DEBUG opendrift.models.oceandrift:572: 237 elements penetrated seafloor, lifting up
10:53:53 DEBUG opendrift.models.oceandrift:590: 20 elements reached seafloor, set to bottom
10:53:53 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
10:53:53 DEBUG opendrift.models.sedimentdrift:112: Settling 20 elements at seafloor
10:53:53 DEBUG opendrift.models.oceandrift:572: 207 elements penetrated seafloor, lifting up
10:53:53 DEBUG opendrift.models.oceandrift:590: 27 elements reached seafloor, set to bottom
10:53:53 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
10:53:53 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
10:53:53 DEBUG opendrift.models.oceandrift:572: 207 elements penetrated seafloor, lifting up
10:53:53 DEBUG opendrift.models.oceandrift:590: 22 elements reached seafloor, set to bottom
10:53:53 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
10:53:53 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
10:53:53 DEBUG opendrift.models.oceandrift:572: 221 elements penetrated seafloor, lifting up
10:53:53 DEBUG opendrift.models.oceandrift:590: 26 elements reached seafloor, set to bottom
10:53:53 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
10:53:53 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
10:53:53 DEBUG opendrift.models.oceandrift:572: 207 elements penetrated seafloor, lifting up
10:53:53 DEBUG opendrift.models.oceandrift:590: 22 elements reached seafloor, set to bottom
10:53:53 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
10:53:53 DEBUG opendrift.models.sedimentdrift:112: Settling 22 elements at seafloor
10:53:53 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:53 DEBUG opendrift.models.basemodel:2945: 3056 active elements (0 deactivated)
10:53:53 DEBUG opendrift.models.basemodel:1658: to be seeded: 6944, already seeded 3056
10:53:53 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:53:53 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:53 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:53 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:53 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:53 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:53 DEBUG opendrift.models.basemodel:1253: Data needed for 3090 elements
10:53:53 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:53 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 01:00:00 (before)
2023-08-22 02:00:00 (after)
10:53:53 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 01:00:00) in space (linearNDFast)
10:53:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:53 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:53 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:53 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:53 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:53 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:53 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.0923 (max)
10:53:53 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:53 DEBUG opendrift.models.basemodel:1527: 3090 active elements
10:53:53 DEBUG opendrift.models.basemodel:1538: 59.10614357856517 <- latitude -> 59.18902042722691
10:53:53 DEBUG opendrift.models.basemodel:1543: 10.932243191303398 <- longitude -> 11.026590464569775
10:53:53 DEBUG opendrift.models.basemodel:1548: -15.032831420898438 <- z -> 0.0
10:53:53 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:53 DEBUG opendrift.models.basemodel:836: Lifting 230 elements to seafloor.
10:53:53 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:53 INFO opendrift.models.basemodel:2882: 2023-08-22 01:32:19.552469 - step 89 of 216 - 3090 active elements (0 deactivated)
10:53:53 DEBUG opendrift.models.basemodel:2888: 6910 elements scheduled.
10:53:53 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:53 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:53 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:53 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:53 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:53 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:53 DEBUG opendrift.models.basemodel:1253: Data needed for 3090 elements
10:53:53 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:53 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:53 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:53 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:53 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:53 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:53 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:53 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:53 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:53 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:53 DEBUG opendrift.models.basemodel:1253: Data needed for 3090 elements
10:53:53 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:53 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 01:00:00 (before)
2023-08-22 02:00:00 (after)
10:53:54 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:54 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:54 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:54 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:54 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:54 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:54 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x23x6) for time after (2023-08-22 02:00:00)
10:53:54 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 01:00:00) in space (linearNDFast)
10:53:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:54 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 02:00:00) in space (linearNDFast)
10:53:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1477 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1477 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1586 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 240 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 3
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1586 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 240 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 3
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1586 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 240 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 3
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1586 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 240 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 3
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1586 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 240 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 3
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1586 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 240 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 3
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2210 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 715 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2210 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 715 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2210 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 715 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2210 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 715 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2210 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 715 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2210 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 715 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1477 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1477 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1477 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1477 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1477 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1477 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 2
10:53:54 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 01:00:00, weight 0.46) and
after (2023-08-22 02:00:00, weight 0.54) in time
10:53:54 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0677673853665 and -58.973420081995926 degrees.
10:53:54 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0677673853665 and -58.973420081995926 degrees.
10:53:54 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:54 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:54 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:54 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:54 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:54 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:54 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.862912 (min) 1.20479 (max)
10:53:54 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.841423 (min) 0.864732 (max)
10:53:54 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000364616 (min) 0.00034219 (max)
10:53:54 DEBUG opendrift.models.basemodel:1524: x_wind: -4.60918 (min) 10.0427 (max)
10:53:54 DEBUG opendrift.models.basemodel:1524: y_wind: -5.94619 (min) 8.5146 (max)
10:53:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:54 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:54 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:54 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:54 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.0923 (max)
10:53:54 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:54 DEBUG opendrift.models.basemodel:1527: 3090 active elements
10:53:54 DEBUG opendrift.models.basemodel:1538: 59.10614357856517 <- latitude -> 59.18902042722691
10:53:54 DEBUG opendrift.models.basemodel:1543: 10.932243191303398 <- longitude -> 11.026590464569775
10:53:54 DEBUG opendrift.models.basemodel:1548: -15.032831420898438 <- z -> 0.0
10:53:54 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:54 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:54 DEBUG opendrift.models.physics_methods:940: min: 0.110920, mean: 3.162962, max: 10.087953
10:53:54 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.110920, mean: 3.162962, max: 10.087953
10:53:54 DEBUG opendrift.models.basemodel:813: 461 elements hit coastline, moving back to water
10:53:54 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:53:54 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:54 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:54 DEBUG opendrift.models.physics_methods:741: Advecting 39 of 3090 elements above 0.100m with wind-sheared ocean current (0.004902 m/s - 0.134856 m/s)
10:53:54 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:54 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:54 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.12592806793458935
10:53:54 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:54 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:54 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:54 DEBUG opendrift.models.oceandrift:572: 356 elements penetrated seafloor, lifting up
10:53:54 DEBUG opendrift.models.oceandrift:590: 44 elements reached seafloor, set to bottom
10:53:54 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
10:53:54 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
10:53:54 DEBUG opendrift.models.oceandrift:572: 245 elements penetrated seafloor, lifting up
10:53:54 DEBUG opendrift.models.oceandrift:590: 43 elements reached seafloor, set to bottom
10:53:54 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
10:53:54 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
10:53:54 DEBUG opendrift.models.oceandrift:572: 266 elements penetrated seafloor, lifting up
10:53:54 DEBUG opendrift.models.oceandrift:590: 32 elements reached seafloor, set to bottom
10:53:54 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
10:53:54 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
10:53:54 DEBUG opendrift.models.oceandrift:572: 236 elements penetrated seafloor, lifting up
10:53:54 DEBUG opendrift.models.oceandrift:590: 31 elements reached seafloor, set to bottom
10:53:54 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
10:53:54 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
10:53:54 DEBUG opendrift.models.oceandrift:572: 221 elements penetrated seafloor, lifting up
10:53:54 DEBUG opendrift.models.oceandrift:590: 39 elements reached seafloor, set to bottom
10:53:54 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
10:53:54 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
10:53:54 DEBUG opendrift.models.oceandrift:572: 208 elements penetrated seafloor, lifting up
10:53:54 DEBUG opendrift.models.oceandrift:590: 36 elements reached seafloor, set to bottom
10:53:54 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
10:53:54 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
10:53:54 DEBUG opendrift.models.oceandrift:572: 226 elements penetrated seafloor, lifting up
10:53:54 DEBUG opendrift.models.oceandrift:590: 31 elements reached seafloor, set to bottom
10:53:54 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
10:53:54 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
10:53:54 DEBUG opendrift.models.oceandrift:572: 218 elements penetrated seafloor, lifting up
10:53:54 DEBUG opendrift.models.oceandrift:590: 30 elements reached seafloor, set to bottom
10:53:54 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
10:53:54 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
10:53:54 DEBUG opendrift.models.oceandrift:572: 182 elements penetrated seafloor, lifting up
10:53:54 DEBUG opendrift.models.oceandrift:590: 31 elements reached seafloor, set to bottom
10:53:54 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
10:53:54 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
10:53:54 DEBUG opendrift.models.oceandrift:572: 189 elements penetrated seafloor, lifting up
10:53:54 DEBUG opendrift.models.oceandrift:590: 24 elements reached seafloor, set to bottom
10:53:54 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
10:53:54 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
10:53:54 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:54 DEBUG opendrift.models.basemodel:2945: 3090 active elements (0 deactivated)
10:53:54 DEBUG opendrift.models.basemodel:1658: to be seeded: 6910, already seeded 3090
10:53:54 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:54 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:54 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:54 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:54 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:54 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:54 DEBUG opendrift.models.basemodel:1253: Data needed for 3125 elements
10:53:54 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:54 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 01:00:00 (before)
2023-08-22 02:00:00 (after)
10:53:54 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 01:00:00) in space (linearNDFast)
10:53:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:54 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:54 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:54 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:54 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:54 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:54 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.0659 (max)
10:53:54 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:54 DEBUG opendrift.models.basemodel:1527: 3125 active elements
10:53:54 DEBUG opendrift.models.basemodel:1538: 59.107105173403525 <- latitude -> 59.190353341076005
10:53:54 DEBUG opendrift.models.basemodel:1543: 10.92956684385629 <- longitude -> 11.026175459506856
10:53:54 DEBUG opendrift.models.basemodel:1548: -14.457818745848872 <- z -> 0.0
10:53:54 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:54 DEBUG opendrift.models.basemodel:836: Lifting 234 elements to seafloor.
10:53:54 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:54 INFO opendrift.models.basemodel:2882: 2023-08-22 01:42:19.552469 - step 90 of 216 - 3125 active elements (0 deactivated)
10:53:54 DEBUG opendrift.models.basemodel:2888: 6875 elements scheduled.
10:53:54 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:54 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:54 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:54 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:54 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:54 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:54 DEBUG opendrift.models.basemodel:1253: Data needed for 3125 elements
10:53:54 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:54 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:54 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:54 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:54 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:54 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:54 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:54 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:54 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:54 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:54 DEBUG opendrift.models.basemodel:1253: Data needed for 3125 elements
10:53:54 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:54 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 01:00:00 (before)
2023-08-22 02:00:00 (after)
10:53:54 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:54 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:54 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:54 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:54 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:54 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:54 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 25x22x5) for time after (2023-08-22 02:00:00)
10:53:54 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 01:00:00) in space (linearNDFast)
10:53:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:54 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 02:00:00) in space (linearNDFast)
10:53:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1528 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1528 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1639 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1639 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1639 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1639 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1639 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2251 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 756 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2251 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 756 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2251 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 756 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2251 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 756 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2251 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 756 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1528 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1528 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1528 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1528 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1528 elements, expanding data 1
10:53:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 14 elements, expanding data 2
10:53:54 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 01:00:00, weight 0.29) and
after (2023-08-22 02:00:00, weight 0.71) in time
10:53:54 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07044372378028 and -58.973835082713464 degrees.
10:53:54 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07044372378028 and -58.973835082713464 degrees.
10:53:54 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:54 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:54 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:54 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:54 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:54 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:54 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.722309 (min) 0.992883 (max)
10:53:54 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.03222 (min) 0.854009 (max)
10:53:54 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.00041079 (min) 0.000374695 (max)
10:53:54 DEBUG opendrift.models.basemodel:1524: x_wind: -3.80305 (min) 9.88096 (max)
10:53:54 DEBUG opendrift.models.basemodel:1524: y_wind: -6.3279 (min) 7.67215 (max)
10:53:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:54 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:54 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:54 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:54 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.0659 (max)
10:53:54 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:54 DEBUG opendrift.models.basemodel:1527: 3125 active elements
10:53:54 DEBUG opendrift.models.basemodel:1538: 59.107105173403525 <- latitude -> 59.190353341076005
10:53:54 DEBUG opendrift.models.basemodel:1543: 10.92956684385629 <- longitude -> 11.026175459506856
10:53:54 DEBUG opendrift.models.basemodel:1548: -14.457818745848872 <- z -> 0.0
10:53:54 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:54 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:54 DEBUG opendrift.models.physics_methods:940: min: 0.023847, mean: 3.077507, max: 8.874329
10:53:54 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.023847, mean: 3.077507, max: 8.874329
10:53:54 DEBUG opendrift.models.basemodel:813: 429 elements hit coastline, moving back to water
10:53:54 DEBUG opendrift.models.basemodel:836: Lifting 96 elements to seafloor.
10:53:54 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:54 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:54 DEBUG opendrift.models.physics_methods:741: Advecting 37 of 3125 elements above 0.100m with wind-sheared ocean current (0.010303 m/s - 0.112141 m/s)
10:53:54 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:54 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:54 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.09745219413145065
10:53:54 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:54 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:54 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:54 DEBUG opendrift.models.oceandrift:572: 351 elements penetrated seafloor, lifting up
10:53:54 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:53:54 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:53:54 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:53:54 DEBUG opendrift.models.oceandrift:572: 280 elements penetrated seafloor, lifting up
10:53:54 DEBUG opendrift.models.oceandrift:590: 39 elements reached seafloor, set to bottom
10:53:54 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
10:53:54 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
10:53:54 DEBUG opendrift.models.oceandrift:572: 259 elements penetrated seafloor, lifting up
10:53:54 DEBUG opendrift.models.oceandrift:590: 31 elements reached seafloor, set to bottom
10:53:54 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
10:53:54 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
10:53:54 DEBUG opendrift.models.oceandrift:572: 246 elements penetrated seafloor, lifting up
10:53:54 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:53:54 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:53:54 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:53:54 DEBUG opendrift.models.oceandrift:572: 251 elements penetrated seafloor, lifting up
10:53:54 DEBUG opendrift.models.oceandrift:590: 37 elements reached seafloor, set to bottom
10:53:54 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
10:53:54 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
10:53:54 DEBUG opendrift.models.oceandrift:572: 215 elements penetrated seafloor, lifting up
10:53:54 DEBUG opendrift.models.oceandrift:590: 32 elements reached seafloor, set to bottom
10:53:54 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
10:53:54 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
10:53:54 DEBUG opendrift.models.oceandrift:572: 186 elements penetrated seafloor, lifting up
10:53:54 DEBUG opendrift.models.oceandrift:590: 29 elements reached seafloor, set to bottom
10:53:54 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
10:53:54 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
10:53:54 DEBUG opendrift.models.oceandrift:572: 204 elements penetrated seafloor, lifting up
10:53:55 DEBUG opendrift.models.oceandrift:590: 26 elements reached seafloor, set to bottom
10:53:55 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
10:53:55 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
10:53:55 DEBUG opendrift.models.oceandrift:572: 234 elements penetrated seafloor, lifting up
10:53:55 DEBUG opendrift.models.oceandrift:590: 35 elements reached seafloor, set to bottom
10:53:55 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
10:53:55 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
10:53:55 DEBUG opendrift.models.oceandrift:572: 203 elements penetrated seafloor, lifting up
10:53:55 DEBUG opendrift.models.oceandrift:590: 24 elements reached seafloor, set to bottom
10:53:55 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
10:53:55 DEBUG opendrift.models.sedimentdrift:112: Settling 24 elements at seafloor
10:53:55 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:55 DEBUG opendrift.models.basemodel:2945: 3125 active elements (0 deactivated)
10:53:55 DEBUG opendrift.models.basemodel:1658: to be seeded: 6875, already seeded 3125
10:53:55 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:55 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:55 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:55 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:55 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:55 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:55 DEBUG opendrift.models.basemodel:1253: Data needed for 3160 elements
10:53:55 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:55 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 01:00:00 (before)
2023-08-22 02:00:00 (after)
10:53:55 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 01:00:00) in space (linearNDFast)
10:53:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:55 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:55 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:55 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:55 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:55 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:55 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.1526 (max)
10:53:55 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:55 DEBUG opendrift.models.basemodel:1527: 3160 active elements
10:53:55 DEBUG opendrift.models.basemodel:1538: 59.10530191216191 <- latitude -> 59.190655534721635
10:53:55 DEBUG opendrift.models.basemodel:1543: 10.929438055603832 <- longitude -> 11.029042030582339
10:53:55 DEBUG opendrift.models.basemodel:1548: -14.839119550287199 <- z -> 0.0
10:53:55 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:55 DEBUG opendrift.models.basemodel:836: Lifting 233 elements to seafloor.
10:53:55 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:55 INFO opendrift.models.basemodel:2882: 2023-08-22 01:52:19.552469 - step 91 of 216 - 3160 active elements (0 deactivated)
10:53:55 DEBUG opendrift.models.basemodel:2888: 6840 elements scheduled.
10:53:55 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:55 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:55 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:55 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:55 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:55 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:55 DEBUG opendrift.models.basemodel:1253: Data needed for 3160 elements
10:53:55 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:55 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:55 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:55 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:55 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:55 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:55 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:55 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:55 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:55 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:55 DEBUG opendrift.models.basemodel:1253: Data needed for 3160 elements
10:53:55 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:55 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 01:00:00 (before)
2023-08-22 02:00:00 (after)
10:53:55 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:55 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:55 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:55 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:55 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:55 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:55 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x23x5) for time after (2023-08-22 02:00:00)
10:53:55 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 01:00:00) in space (linearNDFast)
10:53:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:55 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 02:00:00) in space (linearNDFast)
10:53:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1527 elements, expanding data 1
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1527 elements, expanding data 1
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1652 elements, expanding data 1
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 226 elements, expanding data 2
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1652 elements, expanding data 1
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 226 elements, expanding data 2
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1652 elements, expanding data 1
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 226 elements, expanding data 2
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1652 elements, expanding data 1
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 226 elements, expanding data 2
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1652 elements, expanding data 1
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 226 elements, expanding data 2
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 10 elements, expanding data 3
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2262 elements, expanding data 1
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 760 elements, expanding data 2
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2262 elements, expanding data 1
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 760 elements, expanding data 2
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2262 elements, expanding data 1
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 760 elements, expanding data 2
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2262 elements, expanding data 1
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 760 elements, expanding data 2
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2262 elements, expanding data 1
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 760 elements, expanding data 2
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1527 elements, expanding data 1
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1527 elements, expanding data 1
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1527 elements, expanding data 1
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1527 elements, expanding data 1
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1527 elements, expanding data 1
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 13 elements, expanding data 2
10:53:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:55 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 01:00:00, weight 0.13) and
after (2023-08-22 02:00:00, weight 0.87) in time
10:53:55 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07057251096086 and -58.97096850859733 degrees.
10:53:55 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07057251096086 and -58.97096850859733 degrees.
10:53:55 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:55 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:55 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:55 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:55 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:55 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:55 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.710553 (min) 1.10376 (max)
10:53:55 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.897604 (min) 0.915006 (max)
10:53:55 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000383788 (min) 0.000409293 (max)
10:53:55 DEBUG opendrift.models.basemodel:1524: x_wind: -4.15725 (min) 9.91685 (max)
10:53:55 DEBUG opendrift.models.basemodel:1524: y_wind: -6.18557 (min) 7.4431 (max)
10:53:55 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:55 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:55 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:55 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:55 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:55 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:55 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:55 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.1526 (max)
10:53:55 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:55 DEBUG opendrift.models.basemodel:1527: 3160 active elements
10:53:55 DEBUG opendrift.models.basemodel:1538: 59.10530191216191 <- latitude -> 59.190655534721635
10:53:55 DEBUG opendrift.models.basemodel:1543: 10.929438055603832 <- longitude -> 11.029042030582339
10:53:55 DEBUG opendrift.models.basemodel:1548: -14.839119550287199 <- z -> 0.0
10:53:55 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:55 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:55 DEBUG opendrift.models.physics_methods:940: min: 0.077775, mean: 3.028620, max: 8.724094
10:53:55 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.077775, mean: 3.028620, max: 8.724094
10:53:55 DEBUG opendrift.models.basemodel:813: 456 elements hit coastline, moving back to water
10:53:55 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:53:55 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:55 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:55 DEBUG opendrift.models.physics_methods:741: Advecting 39 of 3160 elements above 0.100m with wind-sheared ocean current (0.006071 m/s - 0.125629 m/s)
10:53:55 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:55 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:55 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.09418068006809234
10:53:55 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:55 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:55 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:55 DEBUG opendrift.models.oceandrift:572: 343 elements penetrated seafloor, lifting up
10:53:55 DEBUG opendrift.models.oceandrift:590: 40 elements reached seafloor, set to bottom
10:53:55 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
10:53:55 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
10:53:55 DEBUG opendrift.models.oceandrift:572: 281 elements penetrated seafloor, lifting up
10:53:55 DEBUG opendrift.models.oceandrift:590: 38 elements reached seafloor, set to bottom
10:53:55 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
10:53:55 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
10:53:55 DEBUG opendrift.models.oceandrift:572: 241 elements penetrated seafloor, lifting up
10:53:55 DEBUG opendrift.models.oceandrift:590: 37 elements reached seafloor, set to bottom
10:53:55 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
10:53:55 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
10:53:55 DEBUG opendrift.models.oceandrift:572: 258 elements penetrated seafloor, lifting up
10:53:55 DEBUG opendrift.models.oceandrift:590: 33 elements reached seafloor, set to bottom
10:53:55 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
10:53:55 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
10:53:55 DEBUG opendrift.models.oceandrift:572: 241 elements penetrated seafloor, lifting up
10:53:55 DEBUG opendrift.models.oceandrift:590: 29 elements reached seafloor, set to bottom
10:53:55 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
10:53:55 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
10:53:55 DEBUG opendrift.models.oceandrift:572: 230 elements penetrated seafloor, lifting up
10:53:55 DEBUG opendrift.models.oceandrift:590: 30 elements reached seafloor, set to bottom
10:53:55 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
10:53:55 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
10:53:55 DEBUG opendrift.models.oceandrift:572: 243 elements penetrated seafloor, lifting up
10:53:55 DEBUG opendrift.models.oceandrift:590: 30 elements reached seafloor, set to bottom
10:53:55 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
10:53:55 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
10:53:55 DEBUG opendrift.models.oceandrift:572: 224 elements penetrated seafloor, lifting up
10:53:55 DEBUG opendrift.models.oceandrift:590: 38 elements reached seafloor, set to bottom
10:53:55 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
10:53:55 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
10:53:55 DEBUG opendrift.models.oceandrift:572: 194 elements penetrated seafloor, lifting up
10:53:55 DEBUG opendrift.models.oceandrift:590: 32 elements reached seafloor, set to bottom
10:53:55 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
10:53:55 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
10:53:55 DEBUG opendrift.models.oceandrift:572: 212 elements penetrated seafloor, lifting up
10:53:55 DEBUG opendrift.models.oceandrift:590: 26 elements reached seafloor, set to bottom
10:53:55 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
10:53:55 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
10:53:55 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:55 DEBUG opendrift.models.basemodel:2945: 3160 active elements (0 deactivated)
10:53:55 DEBUG opendrift.models.basemodel:1658: to be seeded: 6840, already seeded 3160
10:53:55 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:55 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:55 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:55 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:55 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:55 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:55 DEBUG opendrift.models.basemodel:1253: Data needed for 3195 elements
10:53:55 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:55 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 02:00:00 (before)
2023-08-22 03:00:00 (after)
10:53:55 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 02:00:00) in space (linearNDFast)
10:53:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:55 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:55 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:55 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:55 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:55 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:55 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.1312 (max)
10:53:55 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:55 DEBUG opendrift.models.basemodel:1527: 3195 active elements
10:53:55 DEBUG opendrift.models.basemodel:1538: 59.10598364978601 <- latitude -> 59.189771578590495
10:53:55 DEBUG opendrift.models.basemodel:1543: 10.928444821665241 <- longitude -> 11.030296093687824
10:53:55 DEBUG opendrift.models.basemodel:1548: -14.94870655725186 <- z -> 0.0
10:53:55 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:55 DEBUG opendrift.models.basemodel:836: Lifting 237 elements to seafloor.
10:53:55 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:55 INFO opendrift.models.basemodel:2882: 2023-08-22 02:02:19.552469 - step 92 of 216 - 3195 active elements (0 deactivated)
10:53:55 DEBUG opendrift.models.basemodel:2888: 6805 elements scheduled.
10:53:55 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:55 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:55 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:55 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:55 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:55 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:55 DEBUG opendrift.models.basemodel:1253: Data needed for 3195 elements
10:53:55 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:55 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:55 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:55 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:55 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:55 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:55 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:55 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:55 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:55 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:55 DEBUG opendrift.models.basemodel:1253: Data needed for 3195 elements
10:53:55 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:55 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 02:00:00 (before)
2023-08-22 03:00:00 (after)
10:53:56 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:56 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:56 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:56 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:56 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:56 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:56 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x23x5) for time after (2023-08-22 03:00:00)
10:53:56 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 02:00:00) in space (linearNDFast)
10:53:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:56 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 03:00:00) in space (linearNDFast)
10:53:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1578 elements, expanding data 1
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1578 elements, expanding data 1
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1689 elements, expanding data 1
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 251 elements, expanding data 2
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1689 elements, expanding data 1
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 251 elements, expanding data 2
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1689 elements, expanding data 1
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 251 elements, expanding data 2
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1689 elements, expanding data 1
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 251 elements, expanding data 2
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1689 elements, expanding data 1
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 251 elements, expanding data 2
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 11 elements, expanding data 3
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2300 elements, expanding data 1
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 789 elements, expanding data 2
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2300 elements, expanding data 1
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 789 elements, expanding data 2
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2300 elements, expanding data 1
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 789 elements, expanding data 2
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2300 elements, expanding data 1
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 789 elements, expanding data 2
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2300 elements, expanding data 1
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 789 elements, expanding data 2
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1578 elements, expanding data 1
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1578 elements, expanding data 1
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1578 elements, expanding data 1
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1578 elements, expanding data 1
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1578 elements, expanding data 1
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 15 elements, expanding data 2
10:53:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:53:56 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 02:00:00, weight 0.96) and
after (2023-08-22 03:00:00, weight 0.04) in time
10:53:56 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07156574833833 and -58.96971446478558 degrees.
10:53:56 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07156574833833 and -58.96971446478558 degrees.
10:53:56 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:56 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:56 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:56 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:56 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:56 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:56 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.777166 (min) 1.00905 (max)
10:53:56 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.837586 (min) 0.878655 (max)
10:53:56 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.00046625 (min) 0.000450499 (max)
10:53:56 DEBUG opendrift.models.basemodel:1524: x_wind: -5.22283 (min) 9.77381 (max)
10:53:56 DEBUG opendrift.models.basemodel:1524: y_wind: -6.73216 (min) 8.10135 (max)
10:53:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:56 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:56 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:56 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:56 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.1312 (max)
10:53:56 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:56 DEBUG opendrift.models.basemodel:1527: 3195 active elements
10:53:56 DEBUG opendrift.models.basemodel:1538: 59.10598364978601 <- latitude -> 59.189771578590495
10:53:56 DEBUG opendrift.models.basemodel:1543: 10.928444821665241 <- longitude -> 11.030296093687824
10:53:56 DEBUG opendrift.models.basemodel:1548: -14.94870655725186 <- z -> 0.0
10:53:56 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:56 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:56 DEBUG opendrift.models.physics_methods:940: min: 0.031767, mean: 2.993786, max: 8.831975
10:53:56 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.031767, mean: 2.993786, max: 8.831975
10:53:56 DEBUG opendrift.models.basemodel:813: 502 elements hit coastline, moving back to water
10:53:56 DEBUG opendrift.models.basemodel:836: Lifting 78 elements to seafloor.
10:53:56 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:56 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:56 DEBUG opendrift.models.physics_methods:741: Advecting 37 of 3195 elements above 0.100m with wind-sheared ocean current (0.008111 m/s - 0.125870 m/s)
10:53:56 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:56 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:56 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.09652424540193558
10:53:56 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:56 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:56 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:56 DEBUG opendrift.models.oceandrift:572: 341 elements penetrated seafloor, lifting up
10:53:56 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:53:56 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:53:56 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:53:56 DEBUG opendrift.models.oceandrift:572: 267 elements penetrated seafloor, lifting up
10:53:56 DEBUG opendrift.models.oceandrift:590: 44 elements reached seafloor, set to bottom
10:53:56 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
10:53:56 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
10:53:56 DEBUG opendrift.models.oceandrift:572: 240 elements penetrated seafloor, lifting up
10:53:56 DEBUG opendrift.models.oceandrift:590: 30 elements reached seafloor, set to bottom
10:53:56 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
10:53:56 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
10:53:56 DEBUG opendrift.models.oceandrift:572: 264 elements penetrated seafloor, lifting up
10:53:56 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:53:56 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:53:56 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:53:56 DEBUG opendrift.models.oceandrift:572: 254 elements penetrated seafloor, lifting up
10:53:56 DEBUG opendrift.models.oceandrift:590: 33 elements reached seafloor, set to bottom
10:53:56 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
10:53:56 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
10:53:56 DEBUG opendrift.models.oceandrift:572: 237 elements penetrated seafloor, lifting up
10:53:56 DEBUG opendrift.models.oceandrift:590: 28 elements reached seafloor, set to bottom
10:53:56 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
10:53:56 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
10:53:56 DEBUG opendrift.models.oceandrift:572: 234 elements penetrated seafloor, lifting up
10:53:56 DEBUG opendrift.models.oceandrift:590: 25 elements reached seafloor, set to bottom
10:53:56 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
10:53:56 DEBUG opendrift.models.sedimentdrift:112: Settling 25 elements at seafloor
10:53:56 DEBUG opendrift.models.oceandrift:572: 207 elements penetrated seafloor, lifting up
10:53:56 DEBUG opendrift.models.oceandrift:590: 32 elements reached seafloor, set to bottom
10:53:56 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
10:53:56 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
10:53:57 DEBUG opendrift.models.oceandrift:572: 224 elements penetrated seafloor, lifting up
10:53:57 DEBUG opendrift.models.oceandrift:590: 30 elements reached seafloor, set to bottom
10:53:57 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
10:53:57 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
10:53:57 DEBUG opendrift.models.oceandrift:572: 221 elements penetrated seafloor, lifting up
10:53:57 DEBUG opendrift.models.oceandrift:590: 26 elements reached seafloor, set to bottom
10:53:57 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
10:53:57 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
10:53:57 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:57 DEBUG opendrift.models.basemodel:2945: 3195 active elements (0 deactivated)
10:53:57 DEBUG opendrift.models.basemodel:1658: to be seeded: 6805, already seeded 3195
10:53:57 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:53:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:57 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:57 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:57 DEBUG opendrift.models.basemodel:1253: Data needed for 3229 elements
10:53:57 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:57 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 02:00:00 (before)
2023-08-22 03:00:00 (after)
10:53:57 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 02:00:00) in space (linearNDFast)
10:53:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:57 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:57 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:57 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:57 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:57 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:57 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.1522 (max)
10:53:57 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:57 DEBUG opendrift.models.basemodel:1527: 3229 active elements
10:53:57 DEBUG opendrift.models.basemodel:1538: 59.105384079110664 <- latitude -> 59.188633355193645
10:53:57 DEBUG opendrift.models.basemodel:1543: 10.927946860034472 <- longitude -> 11.031741161751802
10:53:57 DEBUG opendrift.models.basemodel:1548: -14.418190231323242 <- z -> 0.0
10:53:57 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:57 DEBUG opendrift.models.basemodel:836: Lifting 256 elements to seafloor.
10:53:57 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:57 INFO opendrift.models.basemodel:2882: 2023-08-22 02:12:19.552469 - step 93 of 216 - 3229 active elements (0 deactivated)
10:53:57 DEBUG opendrift.models.basemodel:2888: 6771 elements scheduled.
10:53:57 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:57 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:57 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:57 DEBUG opendrift.models.basemodel:1253: Data needed for 3229 elements
10:53:57 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:57 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:57 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:57 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:57 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:57 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:57 DEBUG opendrift.models.basemodel:1253: Data needed for 3229 elements
10:53:57 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:57 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 02:00:00 (before)
2023-08-22 03:00:00 (after)
10:53:57 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:57 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:57 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:57 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:57 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:57 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:57 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-08-22 03:00:00)
10:53:57 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 02:00:00) in space (linearNDFast)
10:53:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:57 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 03:00:00) in space (linearNDFast)
10:53:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1615 elements, expanding data 1
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1615 elements, expanding data 1
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1727 elements, expanding data 1
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 253 elements, expanding data 2
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 3
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1727 elements, expanding data 1
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 253 elements, expanding data 2
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 3
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1727 elements, expanding data 1
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 253 elements, expanding data 2
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 3
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1727 elements, expanding data 1
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 253 elements, expanding data 2
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 3
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1727 elements, expanding data 1
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 253 elements, expanding data 2
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 17 elements, expanding data 3
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2342 elements, expanding data 1
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 821 elements, expanding data 2
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2342 elements, expanding data 1
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 821 elements, expanding data 2
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2342 elements, expanding data 1
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 821 elements, expanding data 2
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2342 elements, expanding data 1
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 821 elements, expanding data 2
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2342 elements, expanding data 1
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 821 elements, expanding data 2
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1615 elements, expanding data 1
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1615 elements, expanding data 1
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1615 elements, expanding data 1
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1615 elements, expanding data 1
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1615 elements, expanding data 1
10:53:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 19 elements, expanding data 2
10:53:57 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 02:00:00, weight 0.79) and
after (2023-08-22 03:00:00, weight 0.21) in time
10:53:57 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07206371812645 and -58.96826937430127 degrees.
10:53:57 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07206371812645 and -58.96826937430127 degrees.
10:53:57 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:57 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:57 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:57 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:57 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:57 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:57 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.749652 (min) 1.07983 (max)
10:53:57 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.89043 (min) 0.815785 (max)
10:53:57 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000411757 (min) 0.000473221 (max)
10:53:57 DEBUG opendrift.models.basemodel:1524: x_wind: -4.21695 (min) 10.8811 (max)
10:53:57 DEBUG opendrift.models.basemodel:1524: y_wind: -5.76261 (min) 7.10406 (max)
10:53:57 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:57 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:57 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:57 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:57 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:57 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:57 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:57 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.1522 (max)
10:53:57 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:57 DEBUG opendrift.models.basemodel:1527: 3229 active elements
10:53:57 DEBUG opendrift.models.basemodel:1538: 59.105384079110664 <- latitude -> 59.188633355193645
10:53:57 DEBUG opendrift.models.basemodel:1543: 10.927946860034472 <- longitude -> 11.031741161751802
10:53:57 DEBUG opendrift.models.basemodel:1548: -14.418190231323242 <- z -> 0.0
10:53:57 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:57 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:57 DEBUG opendrift.models.physics_methods:940: min: 0.065920, mean: 2.847725, max: 9.300818
10:53:57 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.065920, mean: 2.847725, max: 9.300818
10:53:57 DEBUG opendrift.models.basemodel:813: 484 elements hit coastline, moving back to water
10:53:57 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:53:57 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:57 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:57 DEBUG opendrift.models.physics_methods:741: Advecting 35 of 3229 elements above 0.100m with wind-sheared ocean current (0.010182 m/s - 0.123446 m/s)
10:53:57 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:57 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:57 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.10704372248228072
10:53:57 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:57 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:57 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:57 DEBUG opendrift.models.oceandrift:572: 351 elements penetrated seafloor, lifting up
10:53:57 DEBUG opendrift.models.oceandrift:590: 53 elements reached seafloor, set to bottom
10:53:57 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
10:53:57 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
10:53:57 DEBUG opendrift.models.oceandrift:572: 277 elements penetrated seafloor, lifting up
10:53:57 DEBUG opendrift.models.oceandrift:590: 42 elements reached seafloor, set to bottom
10:53:57 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
10:53:57 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
10:53:57 DEBUG opendrift.models.oceandrift:572: 258 elements penetrated seafloor, lifting up
10:53:57 DEBUG opendrift.models.oceandrift:590: 30 elements reached seafloor, set to bottom
10:53:57 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
10:53:57 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
10:53:57 DEBUG opendrift.models.oceandrift:572: 255 elements penetrated seafloor, lifting up
10:53:57 DEBUG opendrift.models.oceandrift:590: 32 elements reached seafloor, set to bottom
10:53:57 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
10:53:57 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
10:53:57 DEBUG opendrift.models.oceandrift:572: 258 elements penetrated seafloor, lifting up
10:53:57 DEBUG opendrift.models.oceandrift:590: 28 elements reached seafloor, set to bottom
10:53:57 DEBUG opendrift.models.basemodel:836: Lifting 28 elements to seafloor.
10:53:57 DEBUG opendrift.models.sedimentdrift:112: Settling 28 elements at seafloor
10:53:57 DEBUG opendrift.models.oceandrift:572: 242 elements penetrated seafloor, lifting up
10:53:57 DEBUG opendrift.models.oceandrift:590: 38 elements reached seafloor, set to bottom
10:53:57 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
10:53:57 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
10:53:57 DEBUG opendrift.models.oceandrift:572: 223 elements penetrated seafloor, lifting up
10:53:57 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:53:57 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:53:57 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:53:57 DEBUG opendrift.models.oceandrift:572: 220 elements penetrated seafloor, lifting up
10:53:57 DEBUG opendrift.models.oceandrift:590: 33 elements reached seafloor, set to bottom
10:53:57 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
10:53:57 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
10:53:57 DEBUG opendrift.models.oceandrift:572: 222 elements penetrated seafloor, lifting up
10:53:57 DEBUG opendrift.models.oceandrift:590: 23 elements reached seafloor, set to bottom
10:53:57 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
10:53:57 DEBUG opendrift.models.sedimentdrift:112: Settling 23 elements at seafloor
10:53:57 DEBUG opendrift.models.oceandrift:572: 211 elements penetrated seafloor, lifting up
10:53:57 DEBUG opendrift.models.oceandrift:590: 35 elements reached seafloor, set to bottom
10:53:57 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
10:53:57 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
10:53:57 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:57 DEBUG opendrift.models.basemodel:2945: 3229 active elements (0 deactivated)
10:53:57 DEBUG opendrift.models.basemodel:1658: to be seeded: 6771, already seeded 3229
10:53:57 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:57 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:57 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:57 DEBUG opendrift.models.basemodel:1253: Data needed for 3264 elements
10:53:57 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:57 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 02:00:00 (before)
2023-08-22 03:00:00 (after)
10:53:57 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 02:00:00) in space (linearNDFast)
10:53:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:57 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:57 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:57 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:57 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:57 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:57 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.0712 (max)
10:53:57 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:57 DEBUG opendrift.models.basemodel:1527: 3264 active elements
10:53:57 DEBUG opendrift.models.basemodel:1538: 59.10526665158066 <- latitude -> 59.1891611043278
10:53:57 DEBUG opendrift.models.basemodel:1543: 10.924267350922346 <- longitude -> 11.033993741739911
10:53:57 DEBUG opendrift.models.basemodel:1548: -14.492682685852051 <- z -> 0.0
10:53:57 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:57 DEBUG opendrift.models.basemodel:836: Lifting 288 elements to seafloor.
10:53:57 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:57 INFO opendrift.models.basemodel:2882: 2023-08-22 02:22:19.552469 - step 94 of 216 - 3264 active elements (0 deactivated)
10:53:57 DEBUG opendrift.models.basemodel:2888: 6736 elements scheduled.
10:53:57 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:57 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:57 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:57 DEBUG opendrift.models.basemodel:1253: Data needed for 3264 elements
10:53:57 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:57 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:57 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:57 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:57 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:57 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:57 DEBUG opendrift.models.basemodel:1253: Data needed for 3264 elements
10:53:57 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:57 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 02:00:00 (before)
2023-08-22 03:00:00 (after)
10:53:58 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:58 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:58 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:58 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:58 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:58 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:58 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x22x5) for time after (2023-08-22 03:00:00)
10:53:58 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 02:00:00) in space (linearNDFast)
10:53:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:58 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 03:00:00) in space (linearNDFast)
10:53:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1643 elements, expanding data 1
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1643 elements, expanding data 1
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1754 elements, expanding data 1
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 271 elements, expanding data 2
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 3
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1754 elements, expanding data 1
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 271 elements, expanding data 2
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 3
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1754 elements, expanding data 1
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 271 elements, expanding data 2
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 3
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1754 elements, expanding data 1
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 271 elements, expanding data 2
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 3
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1754 elements, expanding data 1
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 271 elements, expanding data 2
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 3
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2383 elements, expanding data 1
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 849 elements, expanding data 2
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2383 elements, expanding data 1
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 849 elements, expanding data 2
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2383 elements, expanding data 1
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 849 elements, expanding data 2
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2383 elements, expanding data 1
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 849 elements, expanding data 2
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2383 elements, expanding data 1
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 849 elements, expanding data 2
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1643 elements, expanding data 1
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1643 elements, expanding data 1
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1643 elements, expanding data 1
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1643 elements, expanding data 1
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1643 elements, expanding data 1
10:53:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
10:53:58 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 02:00:00, weight 0.63) and
after (2023-08-22 03:00:00, weight 0.37) in time
10:53:58 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07574322086819 and -58.9660168020436 degrees.
10:53:58 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07574322086819 and -58.9660168020436 degrees.
10:53:58 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:58 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:58 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:58 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:58 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:58 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:58 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.723992 (min) 1.21265 (max)
10:53:58 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.94357 (min) 0.786177 (max)
10:53:58 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.00047048 (min) 0.000416069 (max)
10:53:58 DEBUG opendrift.models.basemodel:1524: x_wind: -4.81993 (min) 8.96422 (max)
10:53:58 DEBUG opendrift.models.basemodel:1524: y_wind: -6.01433 (min) 6.59406 (max)
10:53:58 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:58 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:58 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:58 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:58 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:58 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:58 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:58 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.0712 (max)
10:53:58 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:58 DEBUG opendrift.models.basemodel:1527: 3264 active elements
10:53:58 DEBUG opendrift.models.basemodel:1538: 59.10526665158066 <- latitude -> 59.1891611043278
10:53:58 DEBUG opendrift.models.basemodel:1543: 10.924267350922346 <- longitude -> 11.033993741739911
10:53:58 DEBUG opendrift.models.basemodel:1548: -14.492682685852051 <- z -> 0.0
10:53:58 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:58 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:58 DEBUG opendrift.models.physics_methods:940: min: 0.031350, mean: 2.734027, max: 7.700345
10:53:58 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.031350, mean: 2.734027, max: 7.700345
10:53:58 DEBUG opendrift.models.basemodel:813: 487 elements hit coastline, moving back to water
10:53:58 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
10:53:58 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:58 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:58 DEBUG opendrift.models.physics_methods:741: Advecting 35 of 3264 elements above 0.100m with wind-sheared ocean current (0.002505 m/s - 0.131092 m/s)
10:53:58 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:58 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:58 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.07337480330904006
10:53:58 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:58 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:58 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:58 DEBUG opendrift.models.oceandrift:572: 380 elements penetrated seafloor, lifting up
10:53:58 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:53:58 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:53:58 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:53:58 DEBUG opendrift.models.oceandrift:572: 256 elements penetrated seafloor, lifting up
10:53:58 DEBUG opendrift.models.oceandrift:590: 41 elements reached seafloor, set to bottom
10:53:58 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
10:53:58 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
10:53:58 DEBUG opendrift.models.oceandrift:572: 256 elements penetrated seafloor, lifting up
10:53:58 DEBUG opendrift.models.oceandrift:590: 39 elements reached seafloor, set to bottom
10:53:58 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
10:53:58 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
10:53:58 DEBUG opendrift.models.oceandrift:572: 237 elements penetrated seafloor, lifting up
10:53:58 DEBUG opendrift.models.oceandrift:590: 42 elements reached seafloor, set to bottom
10:53:58 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
10:53:58 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
10:53:58 DEBUG opendrift.models.oceandrift:572: 234 elements penetrated seafloor, lifting up
10:53:58 DEBUG opendrift.models.oceandrift:590: 39 elements reached seafloor, set to bottom
10:53:58 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
10:53:58 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
10:53:58 DEBUG opendrift.models.oceandrift:572: 252 elements penetrated seafloor, lifting up
10:53:58 DEBUG opendrift.models.oceandrift:590: 38 elements reached seafloor, set to bottom
10:53:58 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
10:53:58 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
10:53:58 DEBUG opendrift.models.oceandrift:572: 206 elements penetrated seafloor, lifting up
10:53:58 DEBUG opendrift.models.oceandrift:590: 36 elements reached seafloor, set to bottom
10:53:58 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
10:53:58 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
10:53:58 DEBUG opendrift.models.oceandrift:572: 215 elements penetrated seafloor, lifting up
10:53:58 DEBUG opendrift.models.oceandrift:590: 26 elements reached seafloor, set to bottom
10:53:58 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
10:53:58 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
10:53:58 DEBUG opendrift.models.oceandrift:572: 202 elements penetrated seafloor, lifting up
10:53:58 DEBUG opendrift.models.oceandrift:590: 36 elements reached seafloor, set to bottom
10:53:58 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
10:53:58 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
10:53:58 DEBUG opendrift.models.oceandrift:572: 212 elements penetrated seafloor, lifting up
10:53:58 DEBUG opendrift.models.oceandrift:590: 35 elements reached seafloor, set to bottom
10:53:58 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
10:53:58 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
10:53:58 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:58 DEBUG opendrift.models.basemodel:2945: 3264 active elements (0 deactivated)
10:53:58 DEBUG opendrift.models.basemodel:1658: to be seeded: 6736, already seeded 3264
10:53:58 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:58 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:58 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:58 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:58 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:58 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:58 DEBUG opendrift.models.basemodel:1253: Data needed for 3299 elements
10:53:58 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:58 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 02:00:00 (before)
2023-08-22 03:00:00 (after)
10:53:58 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 02:00:00) in space (linearNDFast)
10:53:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:58 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:58 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:58 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:58 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:58 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:58 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.1923 (max)
10:53:58 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:58 DEBUG opendrift.models.basemodel:1527: 3299 active elements
10:53:58 DEBUG opendrift.models.basemodel:1538: 59.103684146386584 <- latitude -> 59.188336595032474
10:53:58 DEBUG opendrift.models.basemodel:1543: 10.925905672229597 <- longitude -> 11.035205361428073
10:53:58 DEBUG opendrift.models.basemodel:1548: -14.659347534179688 <- z -> 0.0
10:53:58 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:58 DEBUG opendrift.models.basemodel:836: Lifting 270 elements to seafloor.
10:53:58 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:58 INFO opendrift.models.basemodel:2882: 2023-08-22 02:32:19.552469 - step 95 of 216 - 3299 active elements (0 deactivated)
10:53:58 DEBUG opendrift.models.basemodel:2888: 6701 elements scheduled.
10:53:58 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:58 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:58 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:58 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:58 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:58 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:58 DEBUG opendrift.models.basemodel:1253: Data needed for 3299 elements
10:53:58 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:58 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:58 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:58 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:58 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:58 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:58 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:58 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:58 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:58 DEBUG opendrift.models.basemodel:1253: Data needed for 3299 elements
10:53:58 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:58 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 02:00:00 (before)
2023-08-22 03:00:00 (after)
10:53:59 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:53:59 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:53:59 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:53:59 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:53:59 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:53:59 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:53:59 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-08-22 03:00:00)
10:53:59 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 02:00:00) in space (linearNDFast)
10:53:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:59 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 03:00:00) in space (linearNDFast)
10:53:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1713 elements, expanding data 1
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1713 elements, expanding data 1
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1819 elements, expanding data 1
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 275 elements, expanding data 2
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 3
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1819 elements, expanding data 1
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 275 elements, expanding data 2
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 3
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1819 elements, expanding data 1
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 275 elements, expanding data 2
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 3
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1819 elements, expanding data 1
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 275 elements, expanding data 2
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 3
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1819 elements, expanding data 1
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 275 elements, expanding data 2
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 16 elements, expanding data 3
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2432 elements, expanding data 1
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 845 elements, expanding data 2
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2432 elements, expanding data 1
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 845 elements, expanding data 2
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2432 elements, expanding data 1
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 845 elements, expanding data 2
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2432 elements, expanding data 1
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 845 elements, expanding data 2
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2432 elements, expanding data 1
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 845 elements, expanding data 2
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1713 elements, expanding data 1
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1713 elements, expanding data 1
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1713 elements, expanding data 1
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1713 elements, expanding data 1
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1713 elements, expanding data 1
10:53:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 18 elements, expanding data 2
10:53:59 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 02:00:00, weight 0.46) and
after (2023-08-22 03:00:00, weight 0.54) in time
10:53:59 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.074104898517966 and -58.964805193595545 degrees.
10:53:59 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.074104898517966 and -58.964805193595545 degrees.
10:53:59 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:59 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:59 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:59 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:53:59 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:53:59 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:59 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.752699 (min) 0.989639 (max)
10:53:59 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.847996 (min) 0.835306 (max)
10:53:59 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000454332 (min) 0.000332133 (max)
10:53:59 DEBUG opendrift.models.basemodel:1524: x_wind: -6.03849 (min) 8.93299 (max)
10:53:59 DEBUG opendrift.models.basemodel:1524: y_wind: -7.74203 (min) 8.39927 (max)
10:53:59 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:53:59 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:53:59 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:53:59 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:53:59 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:53:59 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:53:59 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:53:59 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.1923 (max)
10:53:59 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:59 DEBUG opendrift.models.basemodel:1527: 3299 active elements
10:53:59 DEBUG opendrift.models.basemodel:1538: 59.103684146386584 <- latitude -> 59.188336595032474
10:53:59 DEBUG opendrift.models.basemodel:1543: 10.925905672229597 <- longitude -> 11.035205361428073
10:53:59 DEBUG opendrift.models.basemodel:1548: -14.659347534179688 <- z -> 0.0
10:53:59 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:59 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:53:59 DEBUG opendrift.models.physics_methods:940: min: 0.058906, mean: 2.653841, max: 9.214327
10:53:59 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.058906, mean: 2.653841, max: 9.214327
10:53:59 DEBUG opendrift.models.basemodel:813: 473 elements hit coastline, moving back to water
10:53:59 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:53:59 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:53:59 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:53:59 DEBUG opendrift.models.physics_methods:741: Advecting 36 of 3299 elements above 0.100m with wind-sheared ocean current (0.005698 m/s - 0.098403 m/s)
10:53:59 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:53:59 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:53:59 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.10506218939168929
10:53:59 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:53:59 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:53:59 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:53:59 DEBUG opendrift.models.oceandrift:572: 347 elements penetrated seafloor, lifting up
10:53:59 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:53:59 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:53:59 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:53:59 DEBUG opendrift.models.oceandrift:572: 260 elements penetrated seafloor, lifting up
10:53:59 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:53:59 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:53:59 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:53:59 DEBUG opendrift.models.oceandrift:572: 240 elements penetrated seafloor, lifting up
10:53:59 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:53:59 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:53:59 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:53:59 DEBUG opendrift.models.oceandrift:572: 227 elements penetrated seafloor, lifting up
10:53:59 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:53:59 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:53:59 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:53:59 DEBUG opendrift.models.oceandrift:572: 212 elements penetrated seafloor, lifting up
10:53:59 DEBUG opendrift.models.oceandrift:590: 31 elements reached seafloor, set to bottom
10:53:59 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
10:53:59 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
10:53:59 DEBUG opendrift.models.oceandrift:572: 214 elements penetrated seafloor, lifting up
10:53:59 DEBUG opendrift.models.oceandrift:590: 42 elements reached seafloor, set to bottom
10:53:59 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
10:53:59 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
10:53:59 DEBUG opendrift.models.oceandrift:572: 229 elements penetrated seafloor, lifting up
10:53:59 DEBUG opendrift.models.oceandrift:590: 26 elements reached seafloor, set to bottom
10:53:59 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
10:53:59 DEBUG opendrift.models.sedimentdrift:112: Settling 26 elements at seafloor
10:53:59 DEBUG opendrift.models.oceandrift:572: 225 elements penetrated seafloor, lifting up
10:53:59 DEBUG opendrift.models.oceandrift:590: 33 elements reached seafloor, set to bottom
10:53:59 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
10:53:59 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
10:53:59 DEBUG opendrift.models.oceandrift:572: 214 elements penetrated seafloor, lifting up
10:53:59 DEBUG opendrift.models.oceandrift:590: 27 elements reached seafloor, set to bottom
10:53:59 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
10:53:59 DEBUG opendrift.models.sedimentdrift:112: Settling 27 elements at seafloor
10:53:59 DEBUG opendrift.models.oceandrift:572: 211 elements penetrated seafloor, lifting up
10:53:59 DEBUG opendrift.models.oceandrift:590: 43 elements reached seafloor, set to bottom
10:53:59 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
10:53:59 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
10:53:59 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:53:59 DEBUG opendrift.models.basemodel:2945: 3299 active elements (0 deactivated)
10:53:59 DEBUG opendrift.models.basemodel:1658: to be seeded: 6701, already seeded 3299
10:53:59 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:53:59 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:59 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:53:59 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:59 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:59 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:59 DEBUG opendrift.models.basemodel:1253: Data needed for 3334 elements
10:53:59 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:59 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 02:00:00 (before)
2023-08-22 03:00:00 (after)
10:53:59 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 02:00:00) in space (linearNDFast)
10:53:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:53:59 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:53:59 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:59 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:53:59 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:53:59 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:53:59 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2532 (max)
10:53:59 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:53:59 DEBUG opendrift.models.basemodel:1527: 3334 active elements
10:53:59 DEBUG opendrift.models.basemodel:1538: 59.10336448040879 <- latitude -> 59.188864310005826
10:53:59 DEBUG opendrift.models.basemodel:1543: 10.927859897465586 <- longitude -> 11.036831010537673
10:53:59 DEBUG opendrift.models.basemodel:1548: -14.659347534179688 <- z -> 0.0
10:53:59 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:53:59 DEBUG opendrift.models.basemodel:836: Lifting 298 elements to seafloor.
10:53:59 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:53:59 INFO opendrift.models.basemodel:2882: 2023-08-22 02:42:19.552469 - step 96 of 216 - 3334 active elements (0 deactivated)
10:53:59 DEBUG opendrift.models.basemodel:2888: 6666 elements scheduled.
10:53:59 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:53:59 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:59 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:53:59 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:59 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:53:59 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:59 DEBUG opendrift.models.basemodel:1253: Data needed for 3334 elements
10:53:59 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:53:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:53:59 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:53:59 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:53:59 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:53:59 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:53:59 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:53:59 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:53:59 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:59 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:53:59 DEBUG opendrift.models.basemodel:1253: Data needed for 3334 elements
10:53:59 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:53:59 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 02:00:00 (before)
2023-08-22 03:00:00 (after)
10:54:00 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:00 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:00 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:00 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:00 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:00 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:00 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x22x5) for time after (2023-08-22 03:00:00)
10:54:00 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 02:00:00) in space (linearNDFast)
10:54:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:00 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 03:00:00) in space (linearNDFast)
10:54:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1739 elements, expanding data 1
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1739 elements, expanding data 1
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1852 elements, expanding data 1
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 281 elements, expanding data 2
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 3
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1852 elements, expanding data 1
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 281 elements, expanding data 2
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 3
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1852 elements, expanding data 1
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 281 elements, expanding data 2
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 3
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1852 elements, expanding data 1
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 281 elements, expanding data 2
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 3
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1852 elements, expanding data 1
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 281 elements, expanding data 2
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 20 elements, expanding data 3
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2428 elements, expanding data 1
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 891 elements, expanding data 2
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2428 elements, expanding data 1
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 891 elements, expanding data 2
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2428 elements, expanding data 1
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 891 elements, expanding data 2
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2428 elements, expanding data 1
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 891 elements, expanding data 2
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2428 elements, expanding data 1
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 891 elements, expanding data 2
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1739 elements, expanding data 1
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1739 elements, expanding data 1
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1739 elements, expanding data 1
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1739 elements, expanding data 1
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1739 elements, expanding data 1
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 28 elements, expanding data 2
10:54:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:00 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 02:00:00, weight 0.29) and
after (2023-08-22 03:00:00, weight 0.71) in time
10:54:00 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.072150663337034 and -58.96317954797088 degrees.
10:54:00 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.072150663337034 and -58.96317954797088 degrees.
10:54:00 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:00 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:00 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:00 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:00 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:00 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:00 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.80005 (min) 0.960633 (max)
10:54:00 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.04829 (min) 0.993367 (max)
10:54:00 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000418319 (min) 0.000358563 (max)
10:54:00 DEBUG opendrift.models.basemodel:1524: x_wind: -6.38863 (min) 8.6829 (max)
10:54:00 DEBUG opendrift.models.basemodel:1524: y_wind: -6.97931 (min) 6.88265 (max)
10:54:00 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:00 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:00 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:00 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:00 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:00 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:00 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:00 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2532 (max)
10:54:00 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:00 DEBUG opendrift.models.basemodel:1527: 3334 active elements
10:54:00 DEBUG opendrift.models.basemodel:1538: 59.10336448040879 <- latitude -> 59.188864310005826
10:54:00 DEBUG opendrift.models.basemodel:1543: 10.927859897465586 <- longitude -> 11.036831010537673
10:54:00 DEBUG opendrift.models.basemodel:1548: -14.659347534179688 <- z -> 0.0
10:54:00 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:00 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:00 DEBUG opendrift.models.physics_methods:940: min: 0.052123, mean: 2.574043, max: 8.013470
10:54:00 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.052123, mean: 2.574043, max: 8.013470
10:54:00 DEBUG opendrift.models.basemodel:813: 533 elements hit coastline, moving back to water
10:54:00 DEBUG opendrift.models.basemodel:836: Lifting 114 elements to seafloor.
10:54:00 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:00 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:00 DEBUG opendrift.models.physics_methods:741: Advecting 40 of 3334 elements above 0.100m with wind-sheared ocean current (0.000077 m/s - 0.127454 m/s)
10:54:00 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:00 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:00 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.07946317910774231
10:54:00 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:00 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:00 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:00 DEBUG opendrift.models.oceandrift:572: 374 elements penetrated seafloor, lifting up
10:54:00 DEBUG opendrift.models.oceandrift:590: 63 elements reached seafloor, set to bottom
10:54:00 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
10:54:00 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
10:54:00 DEBUG opendrift.models.oceandrift:572: 278 elements penetrated seafloor, lifting up
10:54:00 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:54:00 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:54:00 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:54:00 DEBUG opendrift.models.oceandrift:572: 271 elements penetrated seafloor, lifting up
10:54:00 DEBUG opendrift.models.oceandrift:590: 39 elements reached seafloor, set to bottom
10:54:00 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
10:54:00 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
10:54:00 DEBUG opendrift.models.oceandrift:572: 226 elements penetrated seafloor, lifting up
10:54:00 DEBUG opendrift.models.oceandrift:590: 43 elements reached seafloor, set to bottom
10:54:00 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
10:54:00 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
10:54:00 DEBUG opendrift.models.oceandrift:572: 226 elements penetrated seafloor, lifting up
10:54:00 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:54:00 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:54:00 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:54:00 DEBUG opendrift.models.oceandrift:572: 217 elements penetrated seafloor, lifting up
10:54:00 DEBUG opendrift.models.oceandrift:590: 38 elements reached seafloor, set to bottom
10:54:00 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
10:54:00 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
10:54:00 DEBUG opendrift.models.oceandrift:572: 219 elements penetrated seafloor, lifting up
10:54:00 DEBUG opendrift.models.oceandrift:590: 40 elements reached seafloor, set to bottom
10:54:00 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
10:54:00 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
10:54:00 DEBUG opendrift.models.oceandrift:572: 208 elements penetrated seafloor, lifting up
10:54:00 DEBUG opendrift.models.oceandrift:590: 30 elements reached seafloor, set to bottom
10:54:00 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
10:54:00 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
10:54:00 DEBUG opendrift.models.oceandrift:572: 179 elements penetrated seafloor, lifting up
10:54:00 DEBUG opendrift.models.oceandrift:590: 21 elements reached seafloor, set to bottom
10:54:00 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
10:54:00 DEBUG opendrift.models.sedimentdrift:112: Settling 21 elements at seafloor
10:54:00 DEBUG opendrift.models.oceandrift:572: 174 elements penetrated seafloor, lifting up
10:54:00 DEBUG opendrift.models.oceandrift:590: 29 elements reached seafloor, set to bottom
10:54:00 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
10:54:00 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
10:54:00 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:00 DEBUG opendrift.models.basemodel:2945: 3334 active elements (0 deactivated)
10:54:00 DEBUG opendrift.models.basemodel:1658: to be seeded: 6666, already seeded 3334
10:54:00 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:54:00 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:00 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:00 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:00 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:00 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:00 DEBUG opendrift.models.basemodel:1253: Data needed for 3368 elements
10:54:00 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:00 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 02:00:00 (before)
2023-08-22 03:00:00 (after)
10:54:00 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 02:00:00) in space (linearNDFast)
10:54:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:00 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:00 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:00 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:00 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:00 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:00 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3348 (max)
10:54:00 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:00 DEBUG opendrift.models.basemodel:1527: 3368 active elements
10:54:00 DEBUG opendrift.models.basemodel:1538: 59.10233752911812 <- latitude -> 59.18819888362093
10:54:00 DEBUG opendrift.models.basemodel:1543: 10.924276685754084 <- longitude -> 11.033122085569875
10:54:00 DEBUG opendrift.models.basemodel:1548: -14.649347534179688 <- z -> 0.0
10:54:00 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:00 DEBUG opendrift.models.basemodel:836: Lifting 284 elements to seafloor.
10:54:00 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:00 INFO opendrift.models.basemodel:2882: 2023-08-22 02:52:19.552469 - step 97 of 216 - 3368 active elements (0 deactivated)
10:54:00 DEBUG opendrift.models.basemodel:2888: 6632 elements scheduled.
10:54:00 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:00 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:00 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:00 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:00 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:00 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:00 DEBUG opendrift.models.basemodel:1253: Data needed for 3368 elements
10:54:00 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:00 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:00 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:00 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:00 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:00 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:00 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:00 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:00 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:00 DEBUG opendrift.models.basemodel:1253: Data needed for 3368 elements
10:54:00 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:00 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 02:00:00 (before)
2023-08-22 03:00:00 (after)
10:54:01 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:01 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:01 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:01 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:01 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:01 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:01 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-08-22 03:00:00)
10:54:01 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 02:00:00) in space (linearNDFast)
10:54:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:01 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 03:00:00) in space (linearNDFast)
10:54:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1777 elements, expanding data 1
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1777 elements, expanding data 1
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1880 elements, expanding data 1
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 284 elements, expanding data 2
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 3
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1880 elements, expanding data 1
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 284 elements, expanding data 2
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 3
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1880 elements, expanding data 1
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 284 elements, expanding data 2
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 3
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1880 elements, expanding data 1
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 284 elements, expanding data 2
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 3
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1880 elements, expanding data 1
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 284 elements, expanding data 2
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 22 elements, expanding data 3
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2488 elements, expanding data 1
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 895 elements, expanding data 2
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2488 elements, expanding data 1
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 895 elements, expanding data 2
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2488 elements, expanding data 1
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 895 elements, expanding data 2
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2488 elements, expanding data 1
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 895 elements, expanding data 2
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2488 elements, expanding data 1
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 895 elements, expanding data 2
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1777 elements, expanding data 1
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1777 elements, expanding data 1
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1777 elements, expanding data 1
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1777 elements, expanding data 1
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1777 elements, expanding data 1
10:54:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 2
10:54:01 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 02:00:00, weight 0.13) and
after (2023-08-22 03:00:00, weight 0.87) in time
10:54:01 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.075733888886845 and -58.966888467287774 degrees.
10:54:01 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.075733888886845 and -58.966888467287774 degrees.
10:54:01 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:01 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:01 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:01 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:01 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:01 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:01 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.781225 (min) 1.04197 (max)
10:54:01 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.955883 (min) 0.904076 (max)
10:54:01 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000521267 (min) 0.000445924 (max)
10:54:01 DEBUG opendrift.models.basemodel:1524: x_wind: -6.27012 (min) 9.28677 (max)
10:54:01 DEBUG opendrift.models.basemodel:1524: y_wind: -7.09192 (min) 7.26389 (max)
10:54:01 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:01 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:01 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:01 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:01 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:01 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:01 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:01 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3348 (max)
10:54:01 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:01 DEBUG opendrift.models.basemodel:1527: 3368 active elements
10:54:01 DEBUG opendrift.models.basemodel:1538: 59.10233752911812 <- latitude -> 59.18819888362093
10:54:01 DEBUG opendrift.models.basemodel:1543: 10.924276685754084 <- longitude -> 11.033122085569875
10:54:01 DEBUG opendrift.models.basemodel:1548: -14.649347534179688 <- z -> 0.0
10:54:01 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:01 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:01 DEBUG opendrift.models.physics_methods:940: min: 0.044508, mean: 2.452061, max: 8.181253
10:54:01 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.044508, mean: 2.452061, max: 8.181253
10:54:01 DEBUG opendrift.models.basemodel:813: 504 elements hit coastline, moving back to water
10:54:01 DEBUG opendrift.models.basemodel:836: Lifting 5 elements to seafloor.
10:54:01 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:01 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:01 DEBUG opendrift.models.physics_methods:741: Advecting 39 of 3368 elements above 0.100m with wind-sheared ocean current (0.001226 m/s - 0.137739 m/s)
10:54:01 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:01 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:01 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.08282537116487503
10:54:01 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:01 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:01 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:01 DEBUG opendrift.models.oceandrift:572: 342 elements penetrated seafloor, lifting up
10:54:01 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:54:01 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:54:01 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:54:01 DEBUG opendrift.models.oceandrift:572: 265 elements penetrated seafloor, lifting up
10:54:01 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:54:01 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:54:01 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:54:01 DEBUG opendrift.models.oceandrift:572: 246 elements penetrated seafloor, lifting up
10:54:01 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:54:01 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:54:01 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:54:01 DEBUG opendrift.models.oceandrift:572: 218 elements penetrated seafloor, lifting up
10:54:01 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:54:01 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:54:01 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:54:01 DEBUG opendrift.models.oceandrift:572: 179 elements penetrated seafloor, lifting up
10:54:01 DEBUG opendrift.models.oceandrift:590: 41 elements reached seafloor, set to bottom
10:54:01 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
10:54:01 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
10:54:01 DEBUG opendrift.models.oceandrift:572: 196 elements penetrated seafloor, lifting up
10:54:01 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:54:01 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:54:01 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:54:01 DEBUG opendrift.models.oceandrift:572: 200 elements penetrated seafloor, lifting up
10:54:01 DEBUG opendrift.models.oceandrift:590: 35 elements reached seafloor, set to bottom
10:54:01 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
10:54:01 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
10:54:01 DEBUG opendrift.models.oceandrift:572: 189 elements penetrated seafloor, lifting up
10:54:01 DEBUG opendrift.models.oceandrift:590: 36 elements reached seafloor, set to bottom
10:54:01 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
10:54:01 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
10:54:01 DEBUG opendrift.models.oceandrift:572: 173 elements penetrated seafloor, lifting up
10:54:01 DEBUG opendrift.models.oceandrift:590: 38 elements reached seafloor, set to bottom
10:54:01 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
10:54:01 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
10:54:01 DEBUG opendrift.models.oceandrift:572: 180 elements penetrated seafloor, lifting up
10:54:01 DEBUG opendrift.models.oceandrift:590: 31 elements reached seafloor, set to bottom
10:54:01 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
10:54:01 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
10:54:01 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:01 DEBUG opendrift.models.basemodel:2945: 3368 active elements (0 deactivated)
10:54:01 DEBUG opendrift.models.basemodel:1658: to be seeded: 6632, already seeded 3368
10:54:01 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:01 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:01 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:01 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:01 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:01 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:01 DEBUG opendrift.models.basemodel:1253: Data needed for 3403 elements
10:54:01 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:01 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 03:00:00 (before)
2023-08-22 04:00:00 (after)
10:54:01 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 03:00:00) in space (linearNDFast)
10:54:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:01 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:01 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:01 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:01 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:01 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:01 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3424 (max)
10:54:01 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:01 DEBUG opendrift.models.basemodel:1527: 3403 active elements
10:54:01 DEBUG opendrift.models.basemodel:1538: 59.10194157225315 <- latitude -> 59.18944110888682
10:54:01 DEBUG opendrift.models.basemodel:1543: 10.921752882689816 <- longitude -> 11.03670947604808
10:54:01 DEBUG opendrift.models.basemodel:1548: -14.558195343017578 <- z -> 0.0
10:54:01 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:01 DEBUG opendrift.models.basemodel:836: Lifting 286 elements to seafloor.
10:54:01 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:01 INFO opendrift.models.basemodel:2882: 2023-08-22 03:02:19.552469 - step 98 of 216 - 3403 active elements (0 deactivated)
10:54:01 DEBUG opendrift.models.basemodel:2888: 6597 elements scheduled.
10:54:01 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:01 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:01 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:01 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:01 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:01 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:01 DEBUG opendrift.models.basemodel:1253: Data needed for 3403 elements
10:54:01 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:01 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:01 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:01 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:01 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:01 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:01 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:01 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:01 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:01 DEBUG opendrift.models.basemodel:1253: Data needed for 3403 elements
10:54:01 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:01 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 03:00:00 (before)
2023-08-22 04:00:00 (after)
10:54:02 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:02 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:02 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:02 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:02 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:02 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:02 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x22x5) for time after (2023-08-22 04:00:00)
10:54:02 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 03:00:00) in space (linearNDFast)
10:54:02 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:02 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 04:00:00) in space (linearNDFast)
10:54:02 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1809 elements, expanding data 1
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 2
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1809 elements, expanding data 1
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 2
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1915 elements, expanding data 1
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 299 elements, expanding data 2
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 3
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1915 elements, expanding data 1
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 299 elements, expanding data 2
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 3
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1915 elements, expanding data 1
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 299 elements, expanding data 2
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 3
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1915 elements, expanding data 1
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 299 elements, expanding data 2
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 3
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1915 elements, expanding data 1
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 299 elements, expanding data 2
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 26 elements, expanding data 3
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2517 elements, expanding data 1
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 867 elements, expanding data 2
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2517 elements, expanding data 1
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 867 elements, expanding data 2
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2517 elements, expanding data 1
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 867 elements, expanding data 2
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2517 elements, expanding data 1
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 867 elements, expanding data 2
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2517 elements, expanding data 1
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 867 elements, expanding data 2
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1809 elements, expanding data 1
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 2
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1809 elements, expanding data 1
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 2
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1809 elements, expanding data 1
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 2
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1809 elements, expanding data 1
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 2
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1809 elements, expanding data 1
10:54:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 2
10:54:02 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 03:00:00, weight 0.96) and
after (2023-08-22 04:00:00, weight 0.04) in time
10:54:02 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.078257678272486 and -58.96330108693977 degrees.
10:54:02 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.078257678272486 and -58.96330108693977 degrees.
10:54:02 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:02 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:02 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:02 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:02 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:02 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:02 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.830915 (min) 1.01064 (max)
10:54:02 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.967837 (min) 0.926903 (max)
10:54:02 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000522172 (min) 0.000460703 (max)
10:54:02 DEBUG opendrift.models.basemodel:1524: x_wind: -6.02462 (min) 10.4319 (max)
10:54:02 DEBUG opendrift.models.basemodel:1524: y_wind: -7.63919 (min) 9.01877 (max)
10:54:02 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:02 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:02 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:02 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:02 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:02 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:02 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:02 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3424 (max)
10:54:02 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:02 DEBUG opendrift.models.basemodel:1527: 3403 active elements
10:54:02 DEBUG opendrift.models.basemodel:1538: 59.10194157225315 <- latitude -> 59.18944110888682
10:54:02 DEBUG opendrift.models.basemodel:1543: 10.921752882689816 <- longitude -> 11.03670947604808
10:54:02 DEBUG opendrift.models.basemodel:1548: -14.476369857788086 <- z -> 0.0
10:54:02 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:02 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:02 DEBUG opendrift.models.physics_methods:940: min: 0.036665, mean: 2.375300, max: 9.111552
10:54:02 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.036665, mean: 2.375300, max: 9.111552
10:54:02 DEBUG opendrift.models.basemodel:813: 529 elements hit coastline, moving back to water
10:54:02 DEBUG opendrift.models.basemodel:836: Lifting 86 elements to seafloor.
10:54:02 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:02 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:02 DEBUG opendrift.models.physics_methods:741: Advecting 38 of 3403 elements above 0.100m with wind-sheared ocean current (0.007236 m/s - 0.108973 m/s)
10:54:02 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:02 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:02 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.10273168020589828
10:54:02 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:02 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:02 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:02 DEBUG opendrift.models.oceandrift:572: 336 elements penetrated seafloor, lifting up
10:54:02 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:54:02 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:54:02 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:54:02 DEBUG opendrift.models.oceandrift:572: 288 elements penetrated seafloor, lifting up
10:54:02 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:54:02 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:54:02 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:54:02 DEBUG opendrift.models.oceandrift:572: 241 elements penetrated seafloor, lifting up
10:54:02 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:54:02 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:54:02 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:54:02 DEBUG opendrift.models.oceandrift:572: 205 elements penetrated seafloor, lifting up
10:54:02 DEBUG opendrift.models.oceandrift:590: 39 elements reached seafloor, set to bottom
10:54:02 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
10:54:02 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
10:54:02 DEBUG opendrift.models.oceandrift:572: 223 elements penetrated seafloor, lifting up
10:54:02 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:54:02 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:54:02 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:54:02 DEBUG opendrift.models.oceandrift:572: 218 elements penetrated seafloor, lifting up
10:54:02 DEBUG opendrift.models.oceandrift:590: 41 elements reached seafloor, set to bottom
10:54:02 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
10:54:02 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
10:54:02 DEBUG opendrift.models.oceandrift:572: 201 elements penetrated seafloor, lifting up
10:54:02 DEBUG opendrift.models.oceandrift:590: 34 elements reached seafloor, set to bottom
10:54:02 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
10:54:02 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
10:54:02 DEBUG opendrift.models.oceandrift:572: 182 elements penetrated seafloor, lifting up
10:54:02 DEBUG opendrift.models.oceandrift:590: 40 elements reached seafloor, set to bottom
10:54:02 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
10:54:02 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
10:54:02 DEBUG opendrift.models.oceandrift:572: 163 elements penetrated seafloor, lifting up
10:54:02 DEBUG opendrift.models.oceandrift:590: 33 elements reached seafloor, set to bottom
10:54:02 DEBUG opendrift.models.basemodel:836: Lifting 33 elements to seafloor.
10:54:02 DEBUG opendrift.models.sedimentdrift:112: Settling 33 elements at seafloor
10:54:02 DEBUG opendrift.models.oceandrift:572: 181 elements penetrated seafloor, lifting up
10:54:02 DEBUG opendrift.models.oceandrift:590: 38 elements reached seafloor, set to bottom
10:54:02 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
10:54:02 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
10:54:02 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:02 DEBUG opendrift.models.basemodel:2945: 3403 active elements (0 deactivated)
10:54:02 DEBUG opendrift.models.basemodel:1658: to be seeded: 6597, already seeded 3403
10:54:02 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:02 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:02 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:02 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:02 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:02 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:02 DEBUG opendrift.models.basemodel:1253: Data needed for 3438 elements
10:54:02 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:02 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 03:00:00 (before)
2023-08-22 04:00:00 (after)
10:54:02 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 03:00:00) in space (linearNDFast)
10:54:02 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:02 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:02 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:02 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:02 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:02 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:02 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2496 (max)
10:54:02 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:02 DEBUG opendrift.models.basemodel:1527: 3438 active elements
10:54:02 DEBUG opendrift.models.basemodel:1538: 59.10329732939003 <- latitude -> 59.18856389635898
10:54:02 DEBUG opendrift.models.basemodel:1543: 10.92163626253902 <- longitude -> 11.038443568238971
10:54:02 DEBUG opendrift.models.basemodel:1548: -14.466369857788086 <- z -> 0.0
10:54:02 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:02 DEBUG opendrift.models.basemodel:836: Lifting 337 elements to seafloor.
10:54:02 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:02 INFO opendrift.models.basemodel:2882: 2023-08-22 03:12:19.552469 - step 99 of 216 - 3438 active elements (0 deactivated)
10:54:02 DEBUG opendrift.models.basemodel:2888: 6562 elements scheduled.
10:54:02 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:02 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:02 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:02 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:02 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:02 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:02 DEBUG opendrift.models.basemodel:1253: Data needed for 3438 elements
10:54:02 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:02 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:02 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:02 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:02 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:02 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:02 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:02 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:02 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:02 DEBUG opendrift.models.basemodel:1253: Data needed for 3438 elements
10:54:02 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:02 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 03:00:00 (before)
2023-08-22 04:00:00 (after)
10:54:03 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:03 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:03 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:03 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:03 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:03 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:03 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x22x5) for time after (2023-08-22 04:00:00)
10:54:03 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 03:00:00) in space (linearNDFast)
10:54:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:03 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 04:00:00) in space (linearNDFast)
10:54:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1861 elements, expanding data 1
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1861 elements, expanding data 1
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1965 elements, expanding data 1
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 2
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 3
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1965 elements, expanding data 1
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 2
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 3
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1965 elements, expanding data 1
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 2
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 3
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1965 elements, expanding data 1
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 2
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 3
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1965 elements, expanding data 1
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 305 elements, expanding data 2
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 23 elements, expanding data 3
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2547 elements, expanding data 1
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 879 elements, expanding data 2
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2547 elements, expanding data 1
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 879 elements, expanding data 2
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2547 elements, expanding data 1
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 879 elements, expanding data 2
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2547 elements, expanding data 1
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 879 elements, expanding data 2
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2547 elements, expanding data 1
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 879 elements, expanding data 2
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1861 elements, expanding data 1
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1861 elements, expanding data 1
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1861 elements, expanding data 1
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1861 elements, expanding data 1
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1861 elements, expanding data 1
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 36 elements, expanding data 2
10:54:03 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 03:00:00, weight 0.79) and
after (2023-08-22 04:00:00, weight 0.21) in time
10:54:03 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07837430938135 and -58.96156698471863 degrees.
10:54:03 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07837430938135 and -58.96156698471863 degrees.
10:54:03 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:03 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:03 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:03 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:03 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:03 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:03 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.79612 (min) 1.11966 (max)
10:54:03 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.965933 (min) 1.06545 (max)
10:54:03 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000468652 (min) 0.000481232 (max)
10:54:03 DEBUG opendrift.models.basemodel:1524: x_wind: -5.39097 (min) 8.01097 (max)
10:54:03 DEBUG opendrift.models.basemodel:1524: y_wind: -8.93342 (min) 8.03848 (max)
10:54:03 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:03 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:03 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:03 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:03 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:03 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:03 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:03 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2496 (max)
10:54:03 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:03 DEBUG opendrift.models.basemodel:1527: 3438 active elements
10:54:03 DEBUG opendrift.models.basemodel:1538: 59.10329732939003 <- latitude -> 59.18856389635898
10:54:03 DEBUG opendrift.models.basemodel:1543: 10.92163626253902 <- longitude -> 11.038443568238971
10:54:03 DEBUG opendrift.models.basemodel:1548: -14.466369857788086 <- z -> 0.0
10:54:03 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:03 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:03 DEBUG opendrift.models.physics_methods:940: min: 0.053342, mean: 2.331156, max: 8.212999
10:54:03 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.053342, mean: 2.331156, max: 8.212999
10:54:03 DEBUG opendrift.models.basemodel:813: 532 elements hit coastline, moving back to water
10:54:03 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:54:03 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:03 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:03 DEBUG opendrift.models.physics_methods:741: Advecting 36 of 3438 elements above 0.100m with wind-sheared ocean current (0.007640 m/s - 0.116241 m/s)
10:54:03 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:03 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:03 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.08346936853654861
10:54:03 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:03 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:03 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:03 DEBUG opendrift.models.oceandrift:572: 368 elements penetrated seafloor, lifting up
10:54:03 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:54:03 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:54:03 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:54:03 DEBUG opendrift.models.oceandrift:572: 257 elements penetrated seafloor, lifting up
10:54:03 DEBUG opendrift.models.oceandrift:590: 42 elements reached seafloor, set to bottom
10:54:03 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
10:54:03 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
10:54:03 DEBUG opendrift.models.oceandrift:572: 276 elements penetrated seafloor, lifting up
10:54:03 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:54:03 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:54:03 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:54:03 DEBUG opendrift.models.oceandrift:572: 263 elements penetrated seafloor, lifting up
10:54:03 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:54:03 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:54:03 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:54:03 DEBUG opendrift.models.oceandrift:572: 227 elements penetrated seafloor, lifting up
10:54:03 DEBUG opendrift.models.oceandrift:590: 41 elements reached seafloor, set to bottom
10:54:03 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
10:54:03 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
10:54:03 DEBUG opendrift.models.oceandrift:572: 210 elements penetrated seafloor, lifting up
10:54:03 DEBUG opendrift.models.oceandrift:590: 31 elements reached seafloor, set to bottom
10:54:03 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
10:54:03 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
10:54:03 DEBUG opendrift.models.oceandrift:572: 219 elements penetrated seafloor, lifting up
10:54:03 DEBUG opendrift.models.oceandrift:590: 40 elements reached seafloor, set to bottom
10:54:03 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
10:54:03 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
10:54:03 DEBUG opendrift.models.oceandrift:572: 198 elements penetrated seafloor, lifting up
10:54:03 DEBUG opendrift.models.oceandrift:590: 29 elements reached seafloor, set to bottom
10:54:03 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
10:54:03 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
10:54:03 DEBUG opendrift.models.oceandrift:572: 200 elements penetrated seafloor, lifting up
10:54:03 DEBUG opendrift.models.oceandrift:590: 35 elements reached seafloor, set to bottom
10:54:03 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
10:54:03 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
10:54:03 DEBUG opendrift.models.oceandrift:572: 199 elements penetrated seafloor, lifting up
10:54:03 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:54:03 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:54:03 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:54:03 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:03 DEBUG opendrift.models.basemodel:2945: 3438 active elements (0 deactivated)
10:54:03 DEBUG opendrift.models.basemodel:1658: to be seeded: 6562, already seeded 3438
10:54:03 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:54:03 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:03 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:03 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:03 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:03 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:03 DEBUG opendrift.models.basemodel:1253: Data needed for 3472 elements
10:54:03 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:03 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 03:00:00 (before)
2023-08-22 04:00:00 (after)
10:54:03 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 03:00:00) in space (linearNDFast)
10:54:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:03 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:03 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:03 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:03 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:03 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:03 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2482 (max)
10:54:03 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:03 DEBUG opendrift.models.basemodel:1527: 3472 active elements
10:54:03 DEBUG opendrift.models.basemodel:1538: 59.10321330602149 <- latitude -> 59.18855960017083
10:54:03 DEBUG opendrift.models.basemodel:1543: 10.92354669001067 <- longitude -> 11.03852933638607
10:54:03 DEBUG opendrift.models.basemodel:1548: -14.641382167385164 <- z -> 0.0
10:54:03 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:03 DEBUG opendrift.models.basemodel:836: Lifting 311 elements to seafloor.
10:54:03 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:03 INFO opendrift.models.basemodel:2882: 2023-08-22 03:22:19.552469 - step 100 of 216 - 3472 active elements (0 deactivated)
10:54:03 DEBUG opendrift.models.basemodel:2888: 6528 elements scheduled.
10:54:03 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:03 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:03 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:03 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:03 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:03 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:03 DEBUG opendrift.models.basemodel:1253: Data needed for 3472 elements
10:54:03 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:03 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:03 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:03 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:03 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:03 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:03 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:03 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:03 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:03 DEBUG opendrift.models.basemodel:1253: Data needed for 3472 elements
10:54:03 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:03 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 03:00:00 (before)
2023-08-22 04:00:00 (after)
10:54:04 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:04 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:04 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:04 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:04 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:04 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:04 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x22x5) for time after (2023-08-22 04:00:00)
10:54:04 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 03:00:00) in space (linearNDFast)
10:54:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:04 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 04:00:00) in space (linearNDFast)
10:54:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1898 elements, expanding data 1
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 2
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1898 elements, expanding data 1
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 2
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2011 elements, expanding data 1
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 310 elements, expanding data 2
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 3
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2011 elements, expanding data 1
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 310 elements, expanding data 2
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 3
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2011 elements, expanding data 1
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 310 elements, expanding data 2
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 3
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2011 elements, expanding data 1
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 310 elements, expanding data 2
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 3
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2011 elements, expanding data 1
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 310 elements, expanding data 2
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 25 elements, expanding data 3
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2578 elements, expanding data 1
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 878 elements, expanding data 2
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2578 elements, expanding data 1
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 878 elements, expanding data 2
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2578 elements, expanding data 1
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 878 elements, expanding data 2
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2578 elements, expanding data 1
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 878 elements, expanding data 2
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2578 elements, expanding data 1
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 878 elements, expanding data 2
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1898 elements, expanding data 1
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 2
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1898 elements, expanding data 1
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 2
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1898 elements, expanding data 1
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 2
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1898 elements, expanding data 1
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 2
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1898 elements, expanding data 1
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 2
10:54:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:04 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 03:00:00, weight 0.63) and
after (2023-08-22 04:00:00, weight 0.37) in time
10:54:04 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07646388432369 and -58.96148120677502 degrees.
10:54:04 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07646388432369 and -58.96148120677502 degrees.
10:54:04 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:04 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:04 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:04 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:04 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:04 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:04 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.806752 (min) 1.04714 (max)
10:54:04 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.847443 (min) 0.897838 (max)
10:54:04 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000455269 (min) 0.000408249 (max)
10:54:04 DEBUG opendrift.models.basemodel:1524: x_wind: -6.07171 (min) 8.41143 (max)
10:54:04 DEBUG opendrift.models.basemodel:1524: y_wind: -8.06648 (min) 6.88026 (max)
10:54:04 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:04 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:04 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:04 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:04 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:04 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:04 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:04 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2482 (max)
10:54:04 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:04 DEBUG opendrift.models.basemodel:1527: 3472 active elements
10:54:04 DEBUG opendrift.models.basemodel:1538: 59.10321330602149 <- latitude -> 59.18855960017083
10:54:04 DEBUG opendrift.models.basemodel:1543: 10.92354669001067 <- longitude -> 11.03852933638607
10:54:04 DEBUG opendrift.models.basemodel:1548: -14.641382167385164 <- z -> 0.0
10:54:04 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:04 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:04 DEBUG opendrift.models.physics_methods:940: min: 0.047798, mean: 2.298572, max: 8.333086
10:54:04 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.047798, mean: 2.298572, max: 8.333086
10:54:04 DEBUG opendrift.models.basemodel:813: 537 elements hit coastline, moving back to water
10:54:04 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
10:54:04 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:04 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:04 DEBUG opendrift.models.physics_methods:741: Advecting 37 of 3472 elements above 0.100m with wind-sheared ocean current (0.008173 m/s - 0.105351 m/s)
10:54:04 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:04 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:04 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.08592800276144028
10:54:04 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:04 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:04 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:04 DEBUG opendrift.models.oceandrift:572: 379 elements penetrated seafloor, lifting up
10:54:04 DEBUG opendrift.models.oceandrift:590: 79 elements reached seafloor, set to bottom
10:54:04 DEBUG opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
10:54:04 DEBUG opendrift.models.sedimentdrift:112: Settling 79 elements at seafloor
10:54:04 DEBUG opendrift.models.oceandrift:572: 298 elements penetrated seafloor, lifting up
10:54:04 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:54:04 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:54:04 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:54:04 DEBUG opendrift.models.oceandrift:572: 251 elements penetrated seafloor, lifting up
10:54:04 DEBUG opendrift.models.oceandrift:590: 40 elements reached seafloor, set to bottom
10:54:04 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
10:54:04 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
10:54:04 DEBUG opendrift.models.oceandrift:572: 254 elements penetrated seafloor, lifting up
10:54:04 DEBUG opendrift.models.oceandrift:590: 54 elements reached seafloor, set to bottom
10:54:04 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
10:54:04 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
10:54:04 DEBUG opendrift.models.oceandrift:572: 242 elements penetrated seafloor, lifting up
10:54:04 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:54:04 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:54:04 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:54:04 DEBUG opendrift.models.oceandrift:572: 219 elements penetrated seafloor, lifting up
10:54:04 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:54:04 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:54:04 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:54:04 DEBUG opendrift.models.oceandrift:572: 208 elements penetrated seafloor, lifting up
10:54:04 DEBUG opendrift.models.oceandrift:590: 35 elements reached seafloor, set to bottom
10:54:04 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
10:54:04 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
10:54:04 DEBUG opendrift.models.oceandrift:572: 215 elements penetrated seafloor, lifting up
10:54:04 DEBUG opendrift.models.oceandrift:590: 34 elements reached seafloor, set to bottom
10:54:04 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
10:54:04 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
10:54:04 DEBUG opendrift.models.oceandrift:572: 203 elements penetrated seafloor, lifting up
10:54:04 DEBUG opendrift.models.oceandrift:590: 30 elements reached seafloor, set to bottom
10:54:04 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
10:54:04 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
10:54:04 DEBUG opendrift.models.oceandrift:572: 182 elements penetrated seafloor, lifting up
10:54:04 DEBUG opendrift.models.oceandrift:590: 41 elements reached seafloor, set to bottom
10:54:04 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
10:54:04 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
10:54:04 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:04 DEBUG opendrift.models.basemodel:2945: 3472 active elements (0 deactivated)
10:54:04 DEBUG opendrift.models.basemodel:1658: to be seeded: 6528, already seeded 3472
10:54:04 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:04 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:04 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:04 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:04 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:04 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:04 DEBUG opendrift.models.basemodel:1253: Data needed for 3507 elements
10:54:04 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:04 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 03:00:00 (before)
2023-08-22 04:00:00 (after)
10:54:04 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 03:00:00) in space (linearNDFast)
10:54:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:04 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:04 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:04 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:04 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:04 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:04 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2165 (max)
10:54:04 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:04 DEBUG opendrift.models.basemodel:1527: 3507 active elements
10:54:04 DEBUG opendrift.models.basemodel:1538: 59.10356456807759 <- latitude -> 59.187971176723764
10:54:04 DEBUG opendrift.models.basemodel:1543: 10.920279324499088 <- longitude -> 11.040269310600634
10:54:04 DEBUG opendrift.models.basemodel:1548: -14.208319664001465 <- z -> 0.0
10:54:04 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:04 DEBUG opendrift.models.basemodel:836: Lifting 335 elements to seafloor.
10:54:04 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:04 INFO opendrift.models.basemodel:2882: 2023-08-22 03:32:19.552469 - step 101 of 216 - 3507 active elements (0 deactivated)
10:54:04 DEBUG opendrift.models.basemodel:2888: 6493 elements scheduled.
10:54:04 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:04 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:04 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:04 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:04 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:04 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:04 DEBUG opendrift.models.basemodel:1253: Data needed for 3507 elements
10:54:04 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:04 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:04 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:04 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:04 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:04 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:04 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:04 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:04 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:04 DEBUG opendrift.models.basemodel:1253: Data needed for 3507 elements
10:54:04 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:04 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 03:00:00 (before)
2023-08-22 04:00:00 (after)
10:54:05 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:05 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:05 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:05 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:05 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:05 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:05 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x22x5) for time after (2023-08-22 04:00:00)
10:54:05 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 03:00:00) in space (linearNDFast)
10:54:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:05 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 04:00:00) in space (linearNDFast)
10:54:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1922 elements, expanding data 1
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 2
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1922 elements, expanding data 1
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 2
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2030 elements, expanding data 1
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 315 elements, expanding data 2
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 3
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2030 elements, expanding data 1
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 315 elements, expanding data 2
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 3
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2030 elements, expanding data 1
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 315 elements, expanding data 2
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 3
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2030 elements, expanding data 1
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 315 elements, expanding data 2
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 3
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2030 elements, expanding data 1
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 315 elements, expanding data 2
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 33 elements, expanding data 3
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2608 elements, expanding data 1
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 873 elements, expanding data 2
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2608 elements, expanding data 1
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 873 elements, expanding data 2
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2608 elements, expanding data 1
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 873 elements, expanding data 2
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2608 elements, expanding data 1
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 873 elements, expanding data 2
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2608 elements, expanding data 1
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 873 elements, expanding data 2
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1922 elements, expanding data 1
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 2
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1922 elements, expanding data 1
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 2
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1922 elements, expanding data 1
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 2
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1922 elements, expanding data 1
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 2
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1922 elements, expanding data 1
10:54:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 2
10:54:05 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 03:00:00, weight 0.46) and
after (2023-08-22 04:00:00, weight 0.54) in time
10:54:05 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07973123773231 and -58.95974123665308 degrees.
10:54:05 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.07973123773231 and -58.95974123665308 degrees.
10:54:05 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:05 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:05 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:05 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:05 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:05 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:05 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.826408 (min) 1.05913 (max)
10:54:05 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.0489 (min) 0.771655 (max)
10:54:05 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000430724 (min) 0.000636927 (max)
10:54:05 DEBUG opendrift.models.basemodel:1524: x_wind: -6.44658 (min) 6.83119 (max)
10:54:05 DEBUG opendrift.models.basemodel:1524: y_wind: -7.29909 (min) 7.13373 (max)
10:54:05 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:05 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:05 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:05 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:05 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:05 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:05 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:05 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2165 (max)
10:54:05 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:05 DEBUG opendrift.models.basemodel:1527: 3507 active elements
10:54:05 DEBUG opendrift.models.basemodel:1538: 59.10356456807759 <- latitude -> 59.187971176723764
10:54:05 DEBUG opendrift.models.basemodel:1543: 10.920279324499088 <- longitude -> 11.040269310600634
10:54:05 DEBUG opendrift.models.basemodel:1548: -14.208319664001465 <- z -> 0.0
10:54:05 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:05 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:05 DEBUG opendrift.models.physics_methods:940: min: 0.041160, mean: 2.287212, max: 7.110666
10:54:05 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.041160, mean: 2.287212, max: 7.110666
10:54:05 DEBUG opendrift.models.basemodel:813: 548 elements hit coastline, moving back to water
10:54:05 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:54:05 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:05 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:05 DEBUG opendrift.models.physics_methods:741: Advecting 37 of 3507 elements above 0.100m with wind-sheared ocean current (0.006134 m/s - 0.127629 m/s)
10:54:05 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:05 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:05 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.06256785703785896
10:54:05 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:05 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:05 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:05 DEBUG opendrift.models.oceandrift:572: 386 elements penetrated seafloor, lifting up
10:54:05 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:54:05 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:54:05 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:54:05 DEBUG opendrift.models.oceandrift:572: 276 elements penetrated seafloor, lifting up
10:54:05 DEBUG opendrift.models.oceandrift:590: 74 elements reached seafloor, set to bottom
10:54:05 DEBUG opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
10:54:05 DEBUG opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
10:54:05 DEBUG opendrift.models.oceandrift:572: 256 elements penetrated seafloor, lifting up
10:54:05 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:54:05 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:54:05 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:54:05 DEBUG opendrift.models.oceandrift:572: 252 elements penetrated seafloor, lifting up
10:54:05 DEBUG opendrift.models.oceandrift:590: 43 elements reached seafloor, set to bottom
10:54:05 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
10:54:05 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
10:54:05 DEBUG opendrift.models.oceandrift:572: 251 elements penetrated seafloor, lifting up
10:54:05 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:54:05 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:54:05 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:54:05 DEBUG opendrift.models.oceandrift:572: 225 elements penetrated seafloor, lifting up
10:54:05 DEBUG opendrift.models.oceandrift:590: 42 elements reached seafloor, set to bottom
10:54:05 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
10:54:05 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
10:54:05 DEBUG opendrift.models.oceandrift:572: 211 elements penetrated seafloor, lifting up
10:54:05 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:54:05 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:54:05 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:54:05 DEBUG opendrift.models.oceandrift:572: 182 elements penetrated seafloor, lifting up
10:54:05 DEBUG opendrift.models.oceandrift:590: 43 elements reached seafloor, set to bottom
10:54:05 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
10:54:05 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
10:54:05 DEBUG opendrift.models.oceandrift:572: 188 elements penetrated seafloor, lifting up
10:54:05 DEBUG opendrift.models.oceandrift:590: 43 elements reached seafloor, set to bottom
10:54:05 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
10:54:05 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
10:54:05 DEBUG opendrift.models.oceandrift:572: 199 elements penetrated seafloor, lifting up
10:54:05 DEBUG opendrift.models.oceandrift:590: 41 elements reached seafloor, set to bottom
10:54:05 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
10:54:05 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
10:54:05 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:05 DEBUG opendrift.models.basemodel:2945: 3507 active elements (0 deactivated)
10:54:05 DEBUG opendrift.models.basemodel:1658: to be seeded: 6493, already seeded 3507
10:54:05 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:05 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:05 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:05 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:05 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:05 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:05 DEBUG opendrift.models.basemodel:1253: Data needed for 3542 elements
10:54:05 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:05 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 03:00:00 (before)
2023-08-22 04:00:00 (after)
10:54:05 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 03:00:00) in space (linearNDFast)
10:54:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:05 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:05 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:05 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:05 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:05 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:05 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3386 (max)
10:54:05 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:05 DEBUG opendrift.models.basemodel:1527: 3542 active elements
10:54:05 DEBUG opendrift.models.basemodel:1538: 59.101611992540185 <- latitude -> 59.18825535600576
10:54:05 DEBUG opendrift.models.basemodel:1543: 10.921400351618333 <- longitude -> 11.036994164697507
10:54:05 DEBUG opendrift.models.basemodel:1548: -14.625381469726562 <- z -> 0.0
10:54:05 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:05 DEBUG opendrift.models.basemodel:836: Lifting 386 elements to seafloor.
10:54:05 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:05 INFO opendrift.models.basemodel:2882: 2023-08-22 03:42:19.552469 - step 102 of 216 - 3542 active elements (0 deactivated)
10:54:05 DEBUG opendrift.models.basemodel:2888: 6458 elements scheduled.
10:54:05 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:05 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:05 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:05 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:05 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:05 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:05 DEBUG opendrift.models.basemodel:1253: Data needed for 3542 elements
10:54:05 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:05 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:05 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:05 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:05 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:05 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:05 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:05 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:05 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:05 DEBUG opendrift.models.basemodel:1253: Data needed for 3542 elements
10:54:05 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:05 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 03:00:00 (before)
2023-08-22 04:00:00 (after)
10:54:06 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:06 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:06 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:06 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:06 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:06 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:06 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x22x5) for time after (2023-08-22 04:00:00)
10:54:06 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 03:00:00) in space (linearNDFast)
10:54:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:06 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 04:00:00) in space (linearNDFast)
10:54:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1935 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 2
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1935 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 2
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2048 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 2
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 3
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2048 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 2
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 3
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2048 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 2
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 3
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2048 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 2
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 3
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2048 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 2
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 29 elements, expanding data 3
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2631 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 850 elements, expanding data 2
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2631 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 850 elements, expanding data 2
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2631 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 850 elements, expanding data 2
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2631 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 850 elements, expanding data 2
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2631 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 850 elements, expanding data 2
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1935 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 2
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1935 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 2
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1935 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 2
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1935 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 2
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1935 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 2
10:54:06 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 03:00:00, weight 0.29) and
after (2023-08-22 04:00:00, weight 0.71) in time
10:54:06 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.078610213613295 and -58.96301637334331 degrees.
10:54:06 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.078610213613295 and -58.96301637334331 degrees.
10:54:06 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:06 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:06 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:06 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:06 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:06 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:06 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.851787 (min) 1.1084 (max)
10:54:06 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.0953 (min) 0.786569 (max)
10:54:06 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000523463 (min) 0.000575283 (max)
10:54:06 DEBUG opendrift.models.basemodel:1524: x_wind: -6.95823 (min) 8.20234 (max)
10:54:06 DEBUG opendrift.models.basemodel:1524: y_wind: -7.18633 (min) 6.9632 (max)
10:54:06 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:06 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:06 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:06 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:06 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:06 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:06 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:06 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3386 (max)
10:54:06 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:06 DEBUG opendrift.models.basemodel:1527: 3542 active elements
10:54:06 DEBUG opendrift.models.basemodel:1538: 59.101611992540185 <- latitude -> 59.18825535600576
10:54:06 DEBUG opendrift.models.basemodel:1543: 10.921400351618333 <- longitude -> 11.036994164697507
10:54:06 DEBUG opendrift.models.basemodel:1548: -14.625381469726562 <- z -> 0.0
10:54:06 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:06 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:06 DEBUG opendrift.models.physics_methods:940: min: 0.012122, mean: 2.260380, max: 7.626387
10:54:06 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.012122, mean: 2.260380, max: 7.626387
10:54:06 DEBUG opendrift.models.basemodel:813: 526 elements hit coastline, moving back to water
10:54:06 DEBUG opendrift.models.basemodel:836: Lifting 123 elements to seafloor.
10:54:06 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:06 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:06 DEBUG opendrift.models.physics_methods:741: Advecting 37 of 3542 elements above 0.100m with wind-sheared ocean current (0.002763 m/s - 0.139497 m/s)
10:54:06 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:06 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:06 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.0719721766451168
10:54:06 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:06 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:06 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:06 DEBUG opendrift.models.oceandrift:572: 404 elements penetrated seafloor, lifting up
10:54:06 DEBUG opendrift.models.oceandrift:590: 63 elements reached seafloor, set to bottom
10:54:06 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
10:54:06 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
10:54:06 DEBUG opendrift.models.oceandrift:572: 288 elements penetrated seafloor, lifting up
10:54:06 DEBUG opendrift.models.oceandrift:590: 62 elements reached seafloor, set to bottom
10:54:06 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
10:54:06 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
10:54:06 DEBUG opendrift.models.oceandrift:572: 270 elements penetrated seafloor, lifting up
10:54:06 DEBUG opendrift.models.oceandrift:590: 44 elements reached seafloor, set to bottom
10:54:06 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
10:54:06 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
10:54:06 DEBUG opendrift.models.oceandrift:572: 246 elements penetrated seafloor, lifting up
10:54:06 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:54:06 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:54:06 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:54:06 DEBUG opendrift.models.oceandrift:572: 257 elements penetrated seafloor, lifting up
10:54:06 DEBUG opendrift.models.oceandrift:590: 53 elements reached seafloor, set to bottom
10:54:06 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
10:54:06 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
10:54:06 DEBUG opendrift.models.oceandrift:572: 218 elements penetrated seafloor, lifting up
10:54:06 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:54:06 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:54:06 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:54:06 DEBUG opendrift.models.oceandrift:572: 212 elements penetrated seafloor, lifting up
10:54:06 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:54:06 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:54:06 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:54:06 DEBUG opendrift.models.oceandrift:572: 209 elements penetrated seafloor, lifting up
10:54:06 DEBUG opendrift.models.oceandrift:590: 42 elements reached seafloor, set to bottom
10:54:06 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
10:54:06 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
10:54:06 DEBUG opendrift.models.oceandrift:572: 214 elements penetrated seafloor, lifting up
10:54:06 DEBUG opendrift.models.oceandrift:590: 43 elements reached seafloor, set to bottom
10:54:06 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
10:54:06 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
10:54:06 DEBUG opendrift.models.oceandrift:572: 207 elements penetrated seafloor, lifting up
10:54:06 DEBUG opendrift.models.oceandrift:590: 37 elements reached seafloor, set to bottom
10:54:06 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
10:54:06 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
10:54:06 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:06 DEBUG opendrift.models.basemodel:2945: 3542 active elements (0 deactivated)
10:54:06 DEBUG opendrift.models.basemodel:1658: to be seeded: 6458, already seeded 3542
10:54:06 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:06 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:06 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:06 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:06 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:06 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:06 DEBUG opendrift.models.basemodel:1253: Data needed for 3577 elements
10:54:06 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:06 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 03:00:00 (before)
2023-08-22 04:00:00 (after)
10:54:06 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 03:00:00) in space (linearNDFast)
10:54:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:06 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:06 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:06 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:06 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:06 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:06 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.368 (max)
10:54:06 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:06 DEBUG opendrift.models.basemodel:1527: 3577 active elements
10:54:06 DEBUG opendrift.models.basemodel:1538: 59.099674372894626 <- latitude -> 59.18885661852879
10:54:06 DEBUG opendrift.models.basemodel:1543: 10.915235290557229 <- longitude -> 11.037130812142582
10:54:06 DEBUG opendrift.models.basemodel:1548: -14.615381469726563 <- z -> 0.0
10:54:06 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:06 DEBUG opendrift.models.basemodel:836: Lifting 363 elements to seafloor.
10:54:06 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:06 INFO opendrift.models.basemodel:2882: 2023-08-22 03:52:19.552469 - step 103 of 216 - 3577 active elements (0 deactivated)
10:54:06 DEBUG opendrift.models.basemodel:2888: 6423 elements scheduled.
10:54:06 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:06 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:06 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:06 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:06 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:06 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:06 DEBUG opendrift.models.basemodel:1253: Data needed for 3577 elements
10:54:06 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:06 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:06 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:06 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:06 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:06 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:06 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:06 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:06 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:06 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:06 DEBUG opendrift.models.basemodel:1253: Data needed for 3577 elements
10:54:06 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:06 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 03:00:00 (before)
2023-08-22 04:00:00 (after)
10:54:06 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:06 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:06 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:06 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:06 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:06 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:06 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x22x5) for time after (2023-08-22 04:00:00)
10:54:06 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 03:00:00) in space (linearNDFast)
10:54:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:06 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 04:00:00) in space (linearNDFast)
10:54:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1959 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 2
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1959 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 2
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2071 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 2
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 3
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2071 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 2
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 3
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2071 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 2
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 3
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2071 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 2
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 3
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2071 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 321 elements, expanding data 2
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 27 elements, expanding data 3
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2680 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 844 elements, expanding data 2
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2680 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 844 elements, expanding data 2
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2680 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 844 elements, expanding data 2
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2680 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 844 elements, expanding data 2
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2680 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 844 elements, expanding data 2
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1959 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 2
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1959 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 2
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1959 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 2
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1959 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 2
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1959 elements, expanding data 1
10:54:06 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 31 elements, expanding data 2
10:54:06 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 03:00:00, weight 0.13) and
after (2023-08-22 04:00:00, weight 0.87) in time
10:54:06 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.084775281558315 and -58.962879739979286 degrees.
10:54:06 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.084775281558315 and -58.962879739979286 degrees.
10:54:06 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:06 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:06 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:06 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:06 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:06 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:06 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -1.00858 (min) 1.13089 (max)
10:54:06 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.881545 (min) 0.925069 (max)
10:54:06 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000428153 (min) 0.000542279 (max)
10:54:06 DEBUG opendrift.models.basemodel:1524: x_wind: -7.30677 (min) 7.29759 (max)
10:54:06 DEBUG opendrift.models.basemodel:1524: y_wind: -7.73167 (min) 7.03119 (max)
10:54:06 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:06 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:06 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:06 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:06 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:06 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:06 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:06 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.368 (max)
10:54:06 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:06 DEBUG opendrift.models.basemodel:1527: 3577 active elements
10:54:06 DEBUG opendrift.models.basemodel:1538: 59.099674372894626 <- latitude -> 59.18885661852879
10:54:06 DEBUG opendrift.models.basemodel:1543: 10.915235290557229 <- longitude -> 11.037130812142582
10:54:06 DEBUG opendrift.models.basemodel:1548: -14.615381469726563 <- z -> 0.0
10:54:06 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:06 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:06 DEBUG opendrift.models.physics_methods:940: min: 0.021040, mean: 2.204776, max: 7.503492
10:54:06 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.021040, mean: 2.204776, max: 7.503492
10:54:06 DEBUG opendrift.models.basemodel:813: 533 elements hit coastline, moving back to water
10:54:06 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
10:54:06 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:06 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:06 DEBUG opendrift.models.physics_methods:741: Advecting 39 of 3577 elements above 0.100m with wind-sheared ocean current (0.002285 m/s - 0.113376 m/s)
10:54:06 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:06 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:06 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.06967141676218987
10:54:06 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:06 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:06 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:06 DEBUG opendrift.models.oceandrift:572: 425 elements penetrated seafloor, lifting up
10:54:06 DEBUG opendrift.models.oceandrift:590: 65 elements reached seafloor, set to bottom
10:54:06 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
10:54:06 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
10:54:06 DEBUG opendrift.models.oceandrift:572: 313 elements penetrated seafloor, lifting up
10:54:06 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:54:06 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:54:06 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:54:06 DEBUG opendrift.models.oceandrift:572: 274 elements penetrated seafloor, lifting up
10:54:06 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:54:06 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:54:06 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:54:06 DEBUG opendrift.models.oceandrift:572: 252 elements penetrated seafloor, lifting up
10:54:06 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:54:06 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:54:06 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:54:06 DEBUG opendrift.models.oceandrift:572: 219 elements penetrated seafloor, lifting up
10:54:06 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:54:06 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:54:06 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:54:06 DEBUG opendrift.models.oceandrift:572: 223 elements penetrated seafloor, lifting up
10:54:06 DEBUG opendrift.models.oceandrift:590: 37 elements reached seafloor, set to bottom
10:54:06 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
10:54:06 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
10:54:06 DEBUG opendrift.models.oceandrift:572: 222 elements penetrated seafloor, lifting up
10:54:06 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:54:06 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:54:06 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:54:06 DEBUG opendrift.models.oceandrift:572: 207 elements penetrated seafloor, lifting up
10:54:06 DEBUG opendrift.models.oceandrift:590: 42 elements reached seafloor, set to bottom
10:54:06 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
10:54:06 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
10:54:06 DEBUG opendrift.models.oceandrift:572: 200 elements penetrated seafloor, lifting up
10:54:06 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:54:06 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:54:06 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:54:06 DEBUG opendrift.models.oceandrift:572: 191 elements penetrated seafloor, lifting up
10:54:06 DEBUG opendrift.models.oceandrift:590: 38 elements reached seafloor, set to bottom
10:54:06 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
10:54:06 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
10:54:06 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:06 DEBUG opendrift.models.basemodel:2945: 3577 active elements (0 deactivated)
10:54:06 DEBUG opendrift.models.basemodel:1658: to be seeded: 6423, already seeded 3577
10:54:06 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:54:06 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:06 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:06 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:06 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:06 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:06 DEBUG opendrift.models.basemodel:1253: Data needed for 3611 elements
10:54:06 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:06 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 04:00:00 (before)
2023-08-22 05:00:00 (after)
10:54:06 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 04:00:00) in space (linearNDFast)
10:54:06 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:06 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:06 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:06 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:06 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:06 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:06 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3617 (max)
10:54:06 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:06 DEBUG opendrift.models.basemodel:1527: 3611 active elements
10:54:06 DEBUG opendrift.models.basemodel:1538: 59.099188396250284 <- latitude -> 59.188525125687356
10:54:06 DEBUG opendrift.models.basemodel:1543: 10.91451786652548 <- longitude -> 11.041218995728205
10:54:06 DEBUG opendrift.models.basemodel:1548: -14.594374223603204 <- z -> 0.0
10:54:06 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:06 DEBUG opendrift.models.basemodel:836: Lifting 365 elements to seafloor.
10:54:06 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:06 INFO opendrift.models.basemodel:2882: 2023-08-22 04:02:19.552469 - step 104 of 216 - 3611 active elements (0 deactivated)
10:54:06 DEBUG opendrift.models.basemodel:2888: 6389 elements scheduled.
10:54:06 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:06 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:06 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:06 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:06 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:06 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:06 DEBUG opendrift.models.basemodel:1253: Data needed for 3611 elements
10:54:06 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:06 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:06 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:06 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:06 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:06 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:06 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:06 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:06 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:06 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:06 DEBUG opendrift.models.basemodel:1253: Data needed for 3611 elements
10:54:06 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:06 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 04:00:00 (before)
2023-08-22 05:00:00 (after)
10:54:08 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:08 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:08 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:08 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:08 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:08 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:08 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x22x5) for time after (2023-08-22 05:00:00)
10:54:08 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 04:00:00) in space (linearNDFast)
10:54:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:08 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 05:00:00) in space (linearNDFast)
10:54:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1976 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 2
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1976 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 2
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2108 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 2
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 3
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2108 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 2
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 3
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2108 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 2
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 3
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2108 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 2
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 3
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2108 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 2
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 37 elements, expanding data 3
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2702 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 861 elements, expanding data 2
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2702 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 861 elements, expanding data 2
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2702 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 861 elements, expanding data 2
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2702 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 861 elements, expanding data 2
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2702 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 861 elements, expanding data 2
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1976 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 2
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1976 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 2
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1976 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 2
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1976 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 2
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1976 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 40 elements, expanding data 2
10:54:08 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 04:00:00, weight 0.96) and
after (2023-08-22 05:00:00, weight 0.04) in time
10:54:08 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.08549270504353 and -58.958791554064995 degrees.
10:54:08 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.08549270504353 and -58.958791554064995 degrees.
10:54:08 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:08 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:08 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:08 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:08 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:08 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:08 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.854574 (min) 1.05924 (max)
10:54:08 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.949746 (min) 0.922602 (max)
10:54:08 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000439022 (min) 0.000650021 (max)
10:54:08 DEBUG opendrift.models.basemodel:1524: x_wind: -6.7593 (min) 6.78778 (max)
10:54:08 DEBUG opendrift.models.basemodel:1524: y_wind: -7.09855 (min) 7.81588 (max)
10:54:08 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:08 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:08 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:08 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:08 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:08 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:08 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:08 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3617 (max)
10:54:08 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:08 DEBUG opendrift.models.basemodel:1527: 3611 active elements
10:54:08 DEBUG opendrift.models.basemodel:1538: 59.099188396250284 <- latitude -> 59.188525125687356
10:54:08 DEBUG opendrift.models.basemodel:1543: 10.91451786652548 <- longitude -> 11.041218995728205
10:54:08 DEBUG opendrift.models.basemodel:1548: -14.594374223603204 <- z -> 0.0
10:54:08 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:08 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:08 DEBUG opendrift.models.physics_methods:940: min: 0.052721, mean: 2.201773, max: 6.795080
10:54:08 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.052721, mean: 2.201773, max: 6.795080
10:54:08 DEBUG opendrift.models.basemodel:813: 517 elements hit coastline, moving back to water
10:54:08 DEBUG opendrift.models.basemodel:836: Lifting 106 elements to seafloor.
10:54:08 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:08 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:08 DEBUG opendrift.models.physics_methods:741: Advecting 36 of 3611 elements above 0.100m with wind-sheared ocean current (0.008820 m/s - 0.138462 m/s)
10:54:08 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:08 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:08 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.05713766911657332
10:54:08 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:08 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:08 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:08 DEBUG opendrift.models.oceandrift:572: 423 elements penetrated seafloor, lifting up
10:54:08 DEBUG opendrift.models.oceandrift:590: 78 elements reached seafloor, set to bottom
10:54:08 DEBUG opendrift.models.basemodel:836: Lifting 78 elements to seafloor.
10:54:08 DEBUG opendrift.models.sedimentdrift:112: Settling 78 elements at seafloor
10:54:08 DEBUG opendrift.models.oceandrift:572: 297 elements penetrated seafloor, lifting up
10:54:08 DEBUG opendrift.models.oceandrift:590: 68 elements reached seafloor, set to bottom
10:54:08 DEBUG opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
10:54:08 DEBUG opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
10:54:08 DEBUG opendrift.models.oceandrift:572: 310 elements penetrated seafloor, lifting up
10:54:08 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:54:08 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:54:08 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:54:08 DEBUG opendrift.models.oceandrift:572: 253 elements penetrated seafloor, lifting up
10:54:08 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:54:08 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:54:08 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:54:08 DEBUG opendrift.models.oceandrift:572: 229 elements penetrated seafloor, lifting up
10:54:08 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:54:08 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:54:08 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:54:08 DEBUG opendrift.models.oceandrift:572: 226 elements penetrated seafloor, lifting up
10:54:08 DEBUG opendrift.models.oceandrift:590: 38 elements reached seafloor, set to bottom
10:54:08 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
10:54:08 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
10:54:08 DEBUG opendrift.models.oceandrift:572: 198 elements penetrated seafloor, lifting up
10:54:08 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:54:08 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:54:08 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:54:08 DEBUG opendrift.models.oceandrift:572: 209 elements penetrated seafloor, lifting up
10:54:08 DEBUG opendrift.models.oceandrift:590: 44 elements reached seafloor, set to bottom
10:54:08 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
10:54:08 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
10:54:08 DEBUG opendrift.models.oceandrift:572: 233 elements penetrated seafloor, lifting up
10:54:08 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:54:08 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:54:08 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:54:08 DEBUG opendrift.models.oceandrift:572: 211 elements penetrated seafloor, lifting up
10:54:08 DEBUG opendrift.models.oceandrift:590: 39 elements reached seafloor, set to bottom
10:54:08 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
10:54:08 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
10:54:08 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:08 DEBUG opendrift.models.basemodel:2945: 3611 active elements (0 deactivated)
10:54:08 DEBUG opendrift.models.basemodel:1658: to be seeded: 6389, already seeded 3611
10:54:08 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:08 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:08 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:08 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:08 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:08 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:08 DEBUG opendrift.models.basemodel:1253: Data needed for 3646 elements
10:54:08 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:08 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 04:00:00 (before)
2023-08-22 05:00:00 (after)
10:54:08 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 04:00:00) in space (linearNDFast)
10:54:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:08 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:08 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:08 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:08 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:08 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:08 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4773 (max)
10:54:08 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:08 DEBUG opendrift.models.basemodel:1527: 3646 active elements
10:54:08 DEBUG opendrift.models.basemodel:1538: 59.0965351357294 <- latitude -> 59.18948768569178
10:54:08 DEBUG opendrift.models.basemodel:1543: 10.91256633773163 <- longitude -> 11.035990324948717
10:54:08 DEBUG opendrift.models.basemodel:1548: -14.705654490296089 <- z -> 0.0
10:54:08 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:08 DEBUG opendrift.models.basemodel:836: Lifting 360 elements to seafloor.
10:54:08 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:08 INFO opendrift.models.basemodel:2882: 2023-08-22 04:12:19.552469 - step 105 of 216 - 3646 active elements (0 deactivated)
10:54:08 DEBUG opendrift.models.basemodel:2888: 6354 elements scheduled.
10:54:08 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:08 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:08 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:08 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:08 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:08 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:08 DEBUG opendrift.models.basemodel:1253: Data needed for 3646 elements
10:54:08 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:08 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:08 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:08 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:08 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:08 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:08 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:08 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:08 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:08 DEBUG opendrift.models.basemodel:1253: Data needed for 3646 elements
10:54:08 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:08 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 04:00:00 (before)
2023-08-22 05:00:00 (after)
10:54:08 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:08 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:08 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:08 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:08 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:08 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:08 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x22x5) for time after (2023-08-22 05:00:00)
10:54:08 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 04:00:00) in space (linearNDFast)
10:54:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:08 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 05:00:00) in space (linearNDFast)
10:54:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1994 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1994 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2133 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 343 elements, expanding data 2
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 3
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2133 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 343 elements, expanding data 2
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 3
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2133 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 343 elements, expanding data 2
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 3
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2133 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 343 elements, expanding data 2
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 3
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2133 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 343 elements, expanding data 2
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 42 elements, expanding data 3
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2734 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 880 elements, expanding data 2
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2734 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 880 elements, expanding data 2
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2734 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 880 elements, expanding data 2
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2734 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 880 elements, expanding data 2
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2734 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 880 elements, expanding data 2
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1994 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1994 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1994 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1994 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1994 elements, expanding data 1
10:54:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 49 elements, expanding data 2
10:54:08 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 04:00:00, weight 0.79) and
after (2023-08-22 05:00:00, weight 0.21) in time
10:54:08 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.08744424460381 and -58.96402022478407 degrees.
10:54:09 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.08744424460381 and -58.96402022478407 degrees.
10:54:09 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:09 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:09 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:09 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:09 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:09 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:09 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.767913 (min) 1.03746 (max)
10:54:09 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.966741 (min) 0.811814 (max)
10:54:09 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000453705 (min) 0.000726426 (max)
10:54:09 DEBUG opendrift.models.basemodel:1524: x_wind: -7.61815 (min) 7.0893 (max)
10:54:09 DEBUG opendrift.models.basemodel:1524: y_wind: -6.65214 (min) 7.44902 (max)
10:54:09 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:09 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:09 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:09 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:09 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:09 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:09 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:09 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4773 (max)
10:54:09 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:09 DEBUG opendrift.models.basemodel:1527: 3646 active elements
10:54:09 DEBUG opendrift.models.basemodel:1538: 59.0965351357294 <- latitude -> 59.18948768569178
10:54:09 DEBUG opendrift.models.basemodel:1543: 10.91256633773163 <- longitude -> 11.035990324948717
10:54:09 DEBUG opendrift.models.basemodel:1548: -14.705654490296089 <- z -> 0.0
10:54:09 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:09 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:09 DEBUG opendrift.models.physics_methods:940: min: 0.032876, mean: 2.202878, max: 7.357206
10:54:09 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.032876, mean: 2.202878, max: 7.357206
10:54:09 DEBUG opendrift.models.basemodel:813: 561 elements hit coastline, moving back to water
10:54:09 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:54:09 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:09 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:09 DEBUG opendrift.models.physics_methods:741: Advecting 37 of 3646 elements above 0.100m with wind-sheared ocean current (0.000513 m/s - 0.126926 m/s)
10:54:09 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:09 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:09 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.06698144860370636
10:54:09 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:09 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:09 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:09 DEBUG opendrift.models.oceandrift:572: 454 elements penetrated seafloor, lifting up
10:54:09 DEBUG opendrift.models.oceandrift:590: 82 elements reached seafloor, set to bottom
10:54:09 DEBUG opendrift.models.basemodel:836: Lifting 82 elements to seafloor.
10:54:09 DEBUG opendrift.models.sedimentdrift:112: Settling 82 elements at seafloor
10:54:09 DEBUG opendrift.models.oceandrift:572: 343 elements penetrated seafloor, lifting up
10:54:09 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:54:09 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:54:09 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:54:09 DEBUG opendrift.models.oceandrift:572: 264 elements penetrated seafloor, lifting up
10:54:09 DEBUG opendrift.models.oceandrift:590: 68 elements reached seafloor, set to bottom
10:54:09 DEBUG opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
10:54:09 DEBUG opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
10:54:09 DEBUG opendrift.models.oceandrift:572: 283 elements penetrated seafloor, lifting up
10:54:09 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:54:09 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:54:09 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:54:09 DEBUG opendrift.models.oceandrift:572: 258 elements penetrated seafloor, lifting up
10:54:09 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:54:09 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:54:09 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:54:09 DEBUG opendrift.models.oceandrift:572: 221 elements penetrated seafloor, lifting up
10:54:09 DEBUG opendrift.models.oceandrift:590: 53 elements reached seafloor, set to bottom
10:54:09 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
10:54:09 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
10:54:09 DEBUG opendrift.models.oceandrift:572: 238 elements penetrated seafloor, lifting up
10:54:09 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:54:09 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:54:09 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:54:09 DEBUG opendrift.models.oceandrift:572: 223 elements penetrated seafloor, lifting up
10:54:09 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:54:09 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:54:09 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:54:09 DEBUG opendrift.models.oceandrift:572: 207 elements penetrated seafloor, lifting up
10:54:09 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:54:09 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:54:09 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:54:09 DEBUG opendrift.models.oceandrift:572: 212 elements penetrated seafloor, lifting up
10:54:09 DEBUG opendrift.models.oceandrift:590: 42 elements reached seafloor, set to bottom
10:54:09 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
10:54:09 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
10:54:09 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:09 DEBUG opendrift.models.basemodel:2945: 3646 active elements (0 deactivated)
10:54:09 DEBUG opendrift.models.basemodel:1658: to be seeded: 6354, already seeded 3646
10:54:09 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:09 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:09 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:09 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:09 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:09 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:09 DEBUG opendrift.models.basemodel:1253: Data needed for 3681 elements
10:54:09 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:09 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 04:00:00 (before)
2023-08-22 05:00:00 (after)
10:54:09 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 04:00:00) in space (linearNDFast)
10:54:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:09 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:09 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:09 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:09 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:09 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:09 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3448 (max)
10:54:09 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:09 DEBUG opendrift.models.basemodel:1527: 3681 active elements
10:54:09 DEBUG opendrift.models.basemodel:1538: 59.09734985248089 <- latitude -> 59.188706894107405
10:54:09 DEBUG opendrift.models.basemodel:1543: 10.910045338082725 <- longitude -> 11.039704943348912
10:54:09 DEBUG opendrift.models.basemodel:1548: -14.595934143066406 <- z -> 0.0
10:54:09 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:09 DEBUG opendrift.models.basemodel:836: Lifting 366 elements to seafloor.
10:54:09 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:09 INFO opendrift.models.basemodel:2882: 2023-08-22 04:22:19.552469 - step 106 of 216 - 3681 active elements (0 deactivated)
10:54:09 DEBUG opendrift.models.basemodel:2888: 6319 elements scheduled.
10:54:09 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:09 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:09 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:09 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:09 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:09 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:09 DEBUG opendrift.models.basemodel:1253: Data needed for 3681 elements
10:54:09 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:09 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:09 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:09 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:09 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:09 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:09 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:09 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:09 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:09 DEBUG opendrift.models.basemodel:1253: Data needed for 3681 elements
10:54:09 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:09 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 04:00:00 (before)
2023-08-22 05:00:00 (after)
10:54:09 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:09 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:09 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:09 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:09 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:09 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:09 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x22x5) for time after (2023-08-22 05:00:00)
10:54:09 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 04:00:00) in space (linearNDFast)
10:54:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:09 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 05:00:00) in space (linearNDFast)
10:54:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2018 elements, expanding data 1
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 2
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2018 elements, expanding data 1
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 2
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2151 elements, expanding data 1
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 356 elements, expanding data 2
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 3
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2151 elements, expanding data 1
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 356 elements, expanding data 2
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 3
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2151 elements, expanding data 1
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 356 elements, expanding data 2
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 3
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2151 elements, expanding data 1
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 356 elements, expanding data 2
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 3
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2151 elements, expanding data 1
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 356 elements, expanding data 2
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 32 elements, expanding data 3
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2753 elements, expanding data 1
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 873 elements, expanding data 2
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2753 elements, expanding data 1
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 873 elements, expanding data 2
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2753 elements, expanding data 1
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 873 elements, expanding data 2
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2753 elements, expanding data 1
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 873 elements, expanding data 2
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2753 elements, expanding data 1
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 873 elements, expanding data 2
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2018 elements, expanding data 1
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 2
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2018 elements, expanding data 1
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 2
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2018 elements, expanding data 1
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 2
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2018 elements, expanding data 1
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 2
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2018 elements, expanding data 1
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 2
10:54:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:09 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 04:00:00, weight 0.63) and
after (2023-08-22 05:00:00, weight 0.37) in time
10:54:09 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.08996522766081 and -58.96030560918612 degrees.
10:54:09 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.08996522766081 and -58.96030560918612 degrees.
10:54:09 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:09 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:09 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:09 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:09 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:09 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:09 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.784735 (min) 0.944159 (max)
10:54:09 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.02197 (min) 0.77279 (max)
10:54:09 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000483951 (min) 0.000663404 (max)
10:54:09 DEBUG opendrift.models.basemodel:1524: x_wind: -6.70226 (min) 7.63196 (max)
10:54:09 DEBUG opendrift.models.basemodel:1524: y_wind: -7.89439 (min) 8.21494 (max)
10:54:09 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:09 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:09 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:09 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:09 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:09 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:09 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:09 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3448 (max)
10:54:09 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:09 DEBUG opendrift.models.basemodel:1527: 3681 active elements
10:54:09 DEBUG opendrift.models.basemodel:1538: 59.09734985248089 <- latitude -> 59.188706894107405
10:54:09 DEBUG opendrift.models.basemodel:1543: 10.910045338082725 <- longitude -> 11.039704943348912
10:54:09 DEBUG opendrift.models.basemodel:1548: -14.595934143066406 <- z -> 0.0
10:54:09 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:09 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:09 DEBUG opendrift.models.physics_methods:940: min: 0.051637, mean: 2.270725, max: 7.826496
10:54:09 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.051637, mean: 2.270725, max: 7.826496
10:54:09 DEBUG opendrift.models.basemodel:813: 537 elements hit coastline, moving back to water
10:54:09 DEBUG opendrift.models.basemodel:836: Lifting 22 elements to seafloor.
10:54:09 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:09 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:09 DEBUG opendrift.models.physics_methods:741: Advecting 37 of 3681 elements above 0.100m with wind-sheared ocean current (0.001335 m/s - 0.143020 m/s)
10:54:09 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:09 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:09 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.07579847989614487
10:54:09 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:09 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:09 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:09 DEBUG opendrift.models.oceandrift:572: 434 elements penetrated seafloor, lifting up
10:54:09 DEBUG opendrift.models.oceandrift:590: 62 elements reached seafloor, set to bottom
10:54:09 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
10:54:09 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
10:54:09 DEBUG opendrift.models.oceandrift:572: 333 elements penetrated seafloor, lifting up
10:54:09 DEBUG opendrift.models.oceandrift:590: 71 elements reached seafloor, set to bottom
10:54:09 DEBUG opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
10:54:09 DEBUG opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
10:54:09 DEBUG opendrift.models.oceandrift:572: 271 elements penetrated seafloor, lifting up
10:54:09 DEBUG opendrift.models.oceandrift:590: 60 elements reached seafloor, set to bottom
10:54:09 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
10:54:09 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
10:54:09 DEBUG opendrift.models.oceandrift:572: 281 elements penetrated seafloor, lifting up
10:54:09 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:54:09 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:54:09 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:54:09 DEBUG opendrift.models.oceandrift:572: 247 elements penetrated seafloor, lifting up
10:54:09 DEBUG opendrift.models.oceandrift:590: 38 elements reached seafloor, set to bottom
10:54:09 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
10:54:09 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
10:54:09 DEBUG opendrift.models.oceandrift:572: 225 elements penetrated seafloor, lifting up
10:54:09 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:54:09 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:54:09 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:54:09 DEBUG opendrift.models.oceandrift:572: 204 elements penetrated seafloor, lifting up
10:54:09 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:54:09 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:54:09 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:54:09 DEBUG opendrift.models.oceandrift:572: 202 elements penetrated seafloor, lifting up
10:54:09 DEBUG opendrift.models.oceandrift:590: 43 elements reached seafloor, set to bottom
10:54:09 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
10:54:09 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
10:54:09 DEBUG opendrift.models.oceandrift:572: 182 elements penetrated seafloor, lifting up
10:54:09 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:54:09 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:54:09 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:54:09 DEBUG opendrift.models.oceandrift:572: 199 elements penetrated seafloor, lifting up
10:54:09 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:54:09 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:54:09 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:54:09 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:09 DEBUG opendrift.models.basemodel:2945: 3681 active elements (0 deactivated)
10:54:09 DEBUG opendrift.models.basemodel:1658: to be seeded: 6319, already seeded 3681
10:54:09 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:54:09 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:09 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:09 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:09 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:09 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:09 DEBUG opendrift.models.basemodel:1253: Data needed for 3715 elements
10:54:09 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:09 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 04:00:00 (before)
2023-08-22 05:00:00 (after)
10:54:09 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 04:00:00) in space (linearNDFast)
10:54:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:09 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:09 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:09 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:09 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:09 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:09 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3528 (max)
10:54:09 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:09 DEBUG opendrift.models.basemodel:1527: 3715 active elements
10:54:09 DEBUG opendrift.models.basemodel:1538: 59.09884430512444 <- latitude -> 59.18831700981355
10:54:09 DEBUG opendrift.models.basemodel:1543: 10.910543747730783 <- longitude -> 11.039506269386136
10:54:09 DEBUG opendrift.models.basemodel:1548: -14.862747192382812 <- z -> 0.0
10:54:09 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:09 DEBUG opendrift.models.basemodel:836: Lifting 345 elements to seafloor.
10:54:09 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:09 INFO opendrift.models.basemodel:2882: 2023-08-22 04:32:19.552469 - step 107 of 216 - 3715 active elements (0 deactivated)
10:54:09 DEBUG opendrift.models.basemodel:2888: 6285 elements scheduled.
10:54:09 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:09 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:09 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:09 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:09 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:09 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:09 DEBUG opendrift.models.basemodel:1253: Data needed for 3715 elements
10:54:09 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:09 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:09 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:09 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:09 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:09 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:09 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:09 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:09 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:09 DEBUG opendrift.models.basemodel:1253: Data needed for 3715 elements
10:54:09 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:09 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 04:00:00 (before)
2023-08-22 05:00:00 (after)
10:54:10 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:10 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:10 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:10 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:10 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:10 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:10 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x22x5) for time after (2023-08-22 05:00:00)
10:54:10 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 04:00:00) in space (linearNDFast)
10:54:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:10 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 05:00:00) in space (linearNDFast)
10:54:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2020 elements, expanding data 1
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2020 elements, expanding data 1
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2159 elements, expanding data 1
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 357 elements, expanding data 2
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 3
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2159 elements, expanding data 1
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 357 elements, expanding data 2
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 3
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2159 elements, expanding data 1
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 357 elements, expanding data 2
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 3
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2159 elements, expanding data 1
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 357 elements, expanding data 2
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 3
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2159 elements, expanding data 1
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 357 elements, expanding data 2
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 34 elements, expanding data 3
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2776 elements, expanding data 1
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 870 elements, expanding data 2
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2776 elements, expanding data 1
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 870 elements, expanding data 2
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2776 elements, expanding data 1
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 870 elements, expanding data 2
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2776 elements, expanding data 1
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 870 elements, expanding data 2
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2776 elements, expanding data 1
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 870 elements, expanding data 2
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2020 elements, expanding data 1
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2020 elements, expanding data 1
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2020 elements, expanding data 1
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2020 elements, expanding data 1
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2020 elements, expanding data 1
10:54:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
10:54:10 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 04:00:00, weight 0.46) and
after (2023-08-22 05:00:00, weight 0.54) in time
10:54:10 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.08946682793548 and -58.960504284170796 degrees.
10:54:10 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.08946682793548 and -58.960504284170796 degrees.
10:54:10 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:10 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:10 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:10 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:10 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:10 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:10 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.816071 (min) 1.09667 (max)
10:54:10 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.919502 (min) 0.885375 (max)
10:54:10 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000516568 (min) 0.000655992 (max)
10:54:10 DEBUG opendrift.models.basemodel:1524: x_wind: -7.1235 (min) 8.59081 (max)
10:54:10 DEBUG opendrift.models.basemodel:1524: y_wind: -5.77302 (min) 7.32837 (max)
10:54:10 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:10 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:10 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:10 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:10 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:10 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:10 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:10 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3528 (max)
10:54:10 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:10 DEBUG opendrift.models.basemodel:1527: 3715 active elements
10:54:10 DEBUG opendrift.models.basemodel:1538: 59.09884430512444 <- latitude -> 59.18831700981355
10:54:10 DEBUG opendrift.models.basemodel:1543: 10.910543747730783 <- longitude -> 11.039506269386136
10:54:10 DEBUG opendrift.models.basemodel:1548: -14.862747192382812 <- z -> 0.0
10:54:10 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:10 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:10 DEBUG opendrift.models.physics_methods:940: min: 0.051038, mean: 2.276532, max: 7.828250
10:54:10 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.051038, mean: 2.276532, max: 7.828250
10:54:10 DEBUG opendrift.models.basemodel:813: 562 elements hit coastline, moving back to water
10:54:10 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:54:10 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:10 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:10 DEBUG opendrift.models.physics_methods:741: Advecting 37 of 3715 elements above 0.100m with wind-sheared ocean current (0.002399 m/s - 0.099420 m/s)
10:54:10 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:10 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:10 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.07583245766075133
10:54:10 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:10 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:10 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:10 DEBUG opendrift.models.oceandrift:572: 408 elements penetrated seafloor, lifting up
10:54:10 DEBUG opendrift.models.oceandrift:590: 76 elements reached seafloor, set to bottom
10:54:10 DEBUG opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
10:54:10 DEBUG opendrift.models.sedimentdrift:112: Settling 76 elements at seafloor
10:54:10 DEBUG opendrift.models.oceandrift:572: 298 elements penetrated seafloor, lifting up
10:54:10 DEBUG opendrift.models.oceandrift:590: 68 elements reached seafloor, set to bottom
10:54:10 DEBUG opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
10:54:10 DEBUG opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
10:54:10 DEBUG opendrift.models.oceandrift:572: 261 elements penetrated seafloor, lifting up
10:54:10 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:54:10 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:54:10 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:54:10 DEBUG opendrift.models.oceandrift:572: 239 elements penetrated seafloor, lifting up
10:54:10 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:54:10 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:54:10 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:54:10 DEBUG opendrift.models.oceandrift:572: 264 elements penetrated seafloor, lifting up
10:54:10 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:54:10 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:54:10 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:54:10 DEBUG opendrift.models.oceandrift:572: 219 elements penetrated seafloor, lifting up
10:54:10 DEBUG opendrift.models.oceandrift:590: 53 elements reached seafloor, set to bottom
10:54:10 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
10:54:10 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
10:54:10 DEBUG opendrift.models.oceandrift:572: 234 elements penetrated seafloor, lifting up
10:54:10 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:54:10 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:54:10 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:54:10 DEBUG opendrift.models.oceandrift:572: 214 elements penetrated seafloor, lifting up
10:54:10 DEBUG opendrift.models.oceandrift:590: 39 elements reached seafloor, set to bottom
10:54:10 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
10:54:10 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
10:54:10 DEBUG opendrift.models.oceandrift:572: 217 elements penetrated seafloor, lifting up
10:54:10 DEBUG opendrift.models.oceandrift:590: 38 elements reached seafloor, set to bottom
10:54:10 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
10:54:10 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
10:54:10 DEBUG opendrift.models.oceandrift:572: 214 elements penetrated seafloor, lifting up
10:54:10 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:54:10 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:54:10 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:54:10 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:10 DEBUG opendrift.models.basemodel:2945: 3715 active elements (0 deactivated)
10:54:10 DEBUG opendrift.models.basemodel:1658: to be seeded: 6285, already seeded 3715
10:54:10 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:10 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:10 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:10 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:10 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:10 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:10 DEBUG opendrift.models.basemodel:1253: Data needed for 3750 elements
10:54:10 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:10 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 04:00:00 (before)
2023-08-22 05:00:00 (after)
10:54:10 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 04:00:00) in space (linearNDFast)
10:54:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:10 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:10 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:10 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:10 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:10 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:10 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3714 (max)
10:54:10 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:10 DEBUG opendrift.models.basemodel:1527: 3750 active elements
10:54:10 DEBUG opendrift.models.basemodel:1538: 59.100835265411376 <- latitude -> 59.18790061114395
10:54:10 DEBUG opendrift.models.basemodel:1543: 10.906345382409736 <- longitude -> 11.037925627031736
10:54:10 DEBUG opendrift.models.basemodel:1548: -14.852747192382813 <- z -> 0.0
10:54:10 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:10 DEBUG opendrift.models.basemodel:836: Lifting 364 elements to seafloor.
10:54:10 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:10 INFO opendrift.models.basemodel:2882: 2023-08-22 04:42:19.552469 - step 108 of 216 - 3750 active elements (0 deactivated)
10:54:10 DEBUG opendrift.models.basemodel:2888: 6250 elements scheduled.
10:54:10 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:10 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:10 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:10 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:10 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:10 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:10 DEBUG opendrift.models.basemodel:1253: Data needed for 3750 elements
10:54:10 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:10 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:10 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:10 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:10 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:10 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:10 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:10 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:10 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:10 DEBUG opendrift.models.basemodel:1253: Data needed for 3750 elements
10:54:10 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:10 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 04:00:00 (before)
2023-08-22 05:00:00 (after)
10:54:11 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:11 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:11 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:11 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:11 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:11 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:11 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x22x5) for time after (2023-08-22 05:00:00)
10:54:11 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 04:00:00) in space (linearNDFast)
10:54:11 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:11 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 05:00:00) in space (linearNDFast)
10:54:11 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2018 elements, expanding data 1
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2018 elements, expanding data 1
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2159 elements, expanding data 1
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 365 elements, expanding data 2
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 3
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2159 elements, expanding data 1
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 365 elements, expanding data 2
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 3
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2159 elements, expanding data 1
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 365 elements, expanding data 2
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 3
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2159 elements, expanding data 1
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 365 elements, expanding data 2
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 3
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2159 elements, expanding data 1
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 365 elements, expanding data 2
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 38 elements, expanding data 3
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2818 elements, expanding data 1
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 850 elements, expanding data 2
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2818 elements, expanding data 1
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 850 elements, expanding data 2
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2818 elements, expanding data 1
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 850 elements, expanding data 2
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2818 elements, expanding data 1
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 850 elements, expanding data 2
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2818 elements, expanding data 1
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 850 elements, expanding data 2
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2018 elements, expanding data 1
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2018 elements, expanding data 1
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2018 elements, expanding data 1
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2018 elements, expanding data 1
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2018 elements, expanding data 1
10:54:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
10:54:11 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 04:00:00, weight 0.29) and
after (2023-08-22 05:00:00, weight 0.71) in time
10:54:11 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09366518755685 and -58.96208493300654 degrees.
10:54:11 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09366518755685 and -58.96208493300654 degrees.
10:54:11 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:11 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:11 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:11 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:11 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:11 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:11 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.903693 (min) 0.961177 (max)
10:54:11 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.826597 (min) 0.86168 (max)
10:54:11 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000497032 (min) 0.000734845 (max)
10:54:11 DEBUG opendrift.models.basemodel:1524: x_wind: -6.55443 (min) 8.80634 (max)
10:54:11 DEBUG opendrift.models.basemodel:1524: y_wind: -6.52055 (min) 8.05332 (max)
10:54:11 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:11 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:11 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:11 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:11 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:11 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:11 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:11 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3714 (max)
10:54:11 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:11 DEBUG opendrift.models.basemodel:1527: 3750 active elements
10:54:11 DEBUG opendrift.models.basemodel:1538: 59.100835265411376 <- latitude -> 59.18790061114395
10:54:11 DEBUG opendrift.models.basemodel:1543: 10.906345382409736 <- longitude -> 11.037925627031736
10:54:11 DEBUG opendrift.models.basemodel:1548: -14.852747192382813 <- z -> 0.0
10:54:11 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:11 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:11 DEBUG opendrift.models.physics_methods:940: min: 0.048059, mean: 2.320847, max: 8.310141
10:54:11 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.048059, mean: 2.320847, max: 8.310141
10:54:11 DEBUG opendrift.models.basemodel:813: 593 elements hit coastline, moving back to water
10:54:11 DEBUG opendrift.models.basemodel:836: Lifting 139 elements to seafloor.
10:54:11 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:11 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:11 DEBUG opendrift.models.physics_methods:741: Advecting 36 of 3750 elements above 0.100m with wind-sheared ocean current (0.001982 m/s - 0.095141 m/s)
10:54:11 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:11 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:11 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.08545549202402114
10:54:11 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:11 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:11 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:11 DEBUG opendrift.models.oceandrift:572: 461 elements penetrated seafloor, lifting up
10:54:11 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:54:11 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:54:11 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:54:11 DEBUG opendrift.models.oceandrift:572: 350 elements penetrated seafloor, lifting up
10:54:11 DEBUG opendrift.models.oceandrift:590: 65 elements reached seafloor, set to bottom
10:54:11 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
10:54:11 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
10:54:11 DEBUG opendrift.models.oceandrift:572: 339 elements penetrated seafloor, lifting up
10:54:11 DEBUG opendrift.models.oceandrift:590: 67 elements reached seafloor, set to bottom
10:54:11 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
10:54:11 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
10:54:11 DEBUG opendrift.models.oceandrift:572: 282 elements penetrated seafloor, lifting up
10:54:11 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:54:11 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:54:11 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:54:11 DEBUG opendrift.models.oceandrift:572: 257 elements penetrated seafloor, lifting up
10:54:11 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:54:11 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:54:11 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:54:11 DEBUG opendrift.models.oceandrift:572: 266 elements penetrated seafloor, lifting up
10:54:11 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:54:11 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:54:11 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:54:11 DEBUG opendrift.models.oceandrift:572: 250 elements penetrated seafloor, lifting up
10:54:11 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:54:11 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:54:11 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:54:11 DEBUG opendrift.models.oceandrift:572: 214 elements penetrated seafloor, lifting up
10:54:11 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:54:11 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:54:11 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:54:11 DEBUG opendrift.models.oceandrift:572: 214 elements penetrated seafloor, lifting up
10:54:11 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:54:11 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:54:11 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:54:11 DEBUG opendrift.models.oceandrift:572: 234 elements penetrated seafloor, lifting up
10:54:11 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:54:11 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:54:11 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:54:11 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:11 DEBUG opendrift.models.basemodel:2945: 3750 active elements (0 deactivated)
10:54:11 DEBUG opendrift.models.basemodel:1658: to be seeded: 6250, already seeded 3750
10:54:11 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:11 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:11 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:11 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:11 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:11 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:11 DEBUG opendrift.models.basemodel:1253: Data needed for 3785 elements
10:54:11 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:11 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 04:00:00 (before)
2023-08-22 05:00:00 (after)
10:54:11 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 04:00:00) in space (linearNDFast)
10:54:11 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:11 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:11 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:11 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:11 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:11 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:11 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3282 (max)
10:54:11 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:11 DEBUG opendrift.models.basemodel:1527: 3785 active elements
10:54:11 DEBUG opendrift.models.basemodel:1538: 59.10031376661357 <- latitude -> 59.188665901244164
10:54:11 DEBUG opendrift.models.basemodel:1543: 10.905369502849803 <- longitude -> 11.041810388955676
10:54:11 DEBUG opendrift.models.basemodel:1548: -14.901528587341309 <- z -> 0.0
10:54:11 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:11 DEBUG opendrift.models.basemodel:836: Lifting 377 elements to seafloor.
10:54:11 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:11 INFO opendrift.models.basemodel:2882: 2023-08-22 04:52:19.552469 - step 109 of 216 - 3785 active elements (0 deactivated)
10:54:11 DEBUG opendrift.models.basemodel:2888: 6215 elements scheduled.
10:54:11 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:11 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:11 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:11 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:11 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:11 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:11 DEBUG opendrift.models.basemodel:1253: Data needed for 3785 elements
10:54:11 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:11 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:11 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:11 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:11 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:11 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:11 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:11 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:11 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:11 DEBUG opendrift.models.basemodel:1253: Data needed for 3785 elements
10:54:11 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:11 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 04:00:00 (before)
2023-08-22 05:00:00 (after)
10:54:12 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:12 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:12 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:12 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:12 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:12 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:12 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x22x5) for time after (2023-08-22 05:00:00)
10:54:12 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 04:00:00) in space (linearNDFast)
10:54:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:12 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 05:00:00) in space (linearNDFast)
10:54:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2027 elements, expanding data 1
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2027 elements, expanding data 1
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2166 elements, expanding data 1
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 380 elements, expanding data 2
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2166 elements, expanding data 1
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 380 elements, expanding data 2
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2166 elements, expanding data 1
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 380 elements, expanding data 2
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2166 elements, expanding data 1
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 380 elements, expanding data 2
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2166 elements, expanding data 1
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 380 elements, expanding data 2
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 39 elements, expanding data 3
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2858 elements, expanding data 1
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 837 elements, expanding data 2
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2858 elements, expanding data 1
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 837 elements, expanding data 2
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2858 elements, expanding data 1
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 837 elements, expanding data 2
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2858 elements, expanding data 1
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 837 elements, expanding data 2
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2858 elements, expanding data 1
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 837 elements, expanding data 2
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2027 elements, expanding data 1
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2027 elements, expanding data 1
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2027 elements, expanding data 1
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2027 elements, expanding data 1
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2027 elements, expanding data 1
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 45 elements, expanding data 2
10:54:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:12 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 04:00:00, weight 0.13) and
after (2023-08-22 05:00:00, weight 0.87) in time
10:54:12 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0946410715748 and -58.95820015794872 degrees.
10:54:12 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.0946410715748 and -58.95820015794872 degrees.
10:54:12 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:12 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:12 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:12 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:12 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:12 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:12 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.887978 (min) 0.967764 (max)
10:54:12 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.990394 (min) 0.768958 (max)
10:54:12 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000494874 (min) 0.000786646 (max)
10:54:12 DEBUG opendrift.models.basemodel:1524: x_wind: -7.41795 (min) 8.40408 (max)
10:54:12 DEBUG opendrift.models.basemodel:1524: y_wind: -6.0251 (min) 8.85431 (max)
10:54:12 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:12 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:12 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:12 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:12 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:12 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:12 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:12 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3282 (max)
10:54:12 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:12 DEBUG opendrift.models.basemodel:1527: 3785 active elements
10:54:12 DEBUG opendrift.models.basemodel:1538: 59.10031376661357 <- latitude -> 59.188665901244164
10:54:12 DEBUG opendrift.models.basemodel:1543: 10.905369502849803 <- longitude -> 11.041810388955676
10:54:12 DEBUG opendrift.models.basemodel:1548: -14.901528587341309 <- z -> 0.0
10:54:12 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:12 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:12 DEBUG opendrift.models.physics_methods:940: min: 0.032532, mean: 2.374520, max: 8.941313
10:54:12 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.032532, mean: 2.374520, max: 8.941313
10:54:12 DEBUG opendrift.models.basemodel:813: 560 elements hit coastline, moving back to water
10:54:12 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:54:12 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:12 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:12 DEBUG opendrift.models.physics_methods:741: Advecting 36 of 3785 elements above 0.100m with wind-sheared ocean current (0.000406 m/s - 0.113217 m/s)
10:54:12 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:12 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:12 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.09892882770355224
10:54:12 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:12 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:12 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:12 DEBUG opendrift.models.oceandrift:572: 458 elements penetrated seafloor, lifting up
10:54:12 DEBUG opendrift.models.oceandrift:590: 80 elements reached seafloor, set to bottom
10:54:12 DEBUG opendrift.models.basemodel:836: Lifting 80 elements to seafloor.
10:54:12 DEBUG opendrift.models.sedimentdrift:112: Settling 80 elements at seafloor
10:54:12 DEBUG opendrift.models.oceandrift:572: 345 elements penetrated seafloor, lifting up
10:54:12 DEBUG opendrift.models.oceandrift:590: 74 elements reached seafloor, set to bottom
10:54:12 DEBUG opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
10:54:12 DEBUG opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
10:54:12 DEBUG opendrift.models.oceandrift:572: 308 elements penetrated seafloor, lifting up
10:54:12 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:54:12 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:54:12 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:54:12 DEBUG opendrift.models.oceandrift:572: 295 elements penetrated seafloor, lifting up
10:54:12 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:54:12 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:54:12 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:54:12 DEBUG opendrift.models.oceandrift:572: 243 elements penetrated seafloor, lifting up
10:54:12 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:54:12 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:54:12 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:54:12 DEBUG opendrift.models.oceandrift:572: 249 elements penetrated seafloor, lifting up
10:54:12 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:54:12 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:54:12 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:54:12 DEBUG opendrift.models.oceandrift:572: 229 elements penetrated seafloor, lifting up
10:54:12 DEBUG opendrift.models.oceandrift:590: 44 elements reached seafloor, set to bottom
10:54:12 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
10:54:12 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
10:54:12 DEBUG opendrift.models.oceandrift:572: 218 elements penetrated seafloor, lifting up
10:54:12 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:54:12 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:54:12 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:54:12 DEBUG opendrift.models.oceandrift:572: 220 elements penetrated seafloor, lifting up
10:54:12 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:54:12 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:54:12 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:54:12 DEBUG opendrift.models.oceandrift:572: 247 elements penetrated seafloor, lifting up
10:54:12 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:54:12 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:54:12 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:54:12 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:12 DEBUG opendrift.models.basemodel:2945: 3785 active elements (0 deactivated)
10:54:12 DEBUG opendrift.models.basemodel:1658: to be seeded: 6215, already seeded 3785
10:54:12 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:12 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:12 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:12 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:12 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:12 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:12 DEBUG opendrift.models.basemodel:1253: Data needed for 3820 elements
10:54:12 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:12 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 05:00:00 (before)
2023-08-22 06:00:00 (after)
10:54:12 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 05:00:00) in space (linearNDFast)
10:54:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:12 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:12 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:12 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:12 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:12 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:12 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2261 (max)
10:54:12 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:12 DEBUG opendrift.models.basemodel:1527: 3820 active elements
10:54:12 DEBUG opendrift.models.basemodel:1538: 59.10091209740825 <- latitude -> 59.188999533667996
10:54:12 DEBUG opendrift.models.basemodel:1543: 10.90186700944429 <- longitude -> 11.03830815648619
10:54:12 DEBUG opendrift.models.basemodel:1548: -14.699563725577732 <- z -> 0.0
10:54:12 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:12 DEBUG opendrift.models.basemodel:836: Lifting 394 elements to seafloor.
10:54:12 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:12 INFO opendrift.models.basemodel:2882: 2023-08-22 05:02:19.552469 - step 110 of 216 - 3820 active elements (0 deactivated)
10:54:12 DEBUG opendrift.models.basemodel:2888: 6180 elements scheduled.
10:54:12 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:12 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:12 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:12 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:12 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:12 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:12 DEBUG opendrift.models.basemodel:1253: Data needed for 3820 elements
10:54:12 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:12 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:12 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:12 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:12 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:12 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:12 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:12 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:12 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:12 DEBUG opendrift.models.basemodel:1253: Data needed for 3820 elements
10:54:12 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:12 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 05:00:00 (before)
2023-08-22 06:00:00 (after)
10:54:13 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:13 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:13 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:13 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:13 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:13 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:13 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x22x5) for time after (2023-08-22 06:00:00)
10:54:13 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 05:00:00) in space (linearNDFast)
10:54:13 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:13 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 06:00:00) in space (linearNDFast)
10:54:13 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2039 elements, expanding data 1
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2039 elements, expanding data 1
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2188 elements, expanding data 1
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 373 elements, expanding data 2
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 3
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2188 elements, expanding data 1
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 373 elements, expanding data 2
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 3
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2188 elements, expanding data 1
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 373 elements, expanding data 2
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 3
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2188 elements, expanding data 1
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 373 elements, expanding data 2
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 3
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2188 elements, expanding data 1
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 373 elements, expanding data 2
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 46 elements, expanding data 3
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2881 elements, expanding data 1
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 2
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2881 elements, expanding data 1
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 2
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2881 elements, expanding data 1
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 2
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2881 elements, expanding data 1
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 2
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2881 elements, expanding data 1
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 2
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2039 elements, expanding data 1
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2039 elements, expanding data 1
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2039 elements, expanding data 1
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2039 elements, expanding data 1
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2039 elements, expanding data 1
10:54:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 2
10:54:13 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 05:00:00, weight 0.96) and
after (2023-08-22 06:00:00, weight 0.04) in time
10:54:13 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09814357471963 and -58.961702391756795 degrees.
10:54:13 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.09814357471963 and -58.961702391756795 degrees.
10:54:13 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:13 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:13 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:13 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:13 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:13 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:13 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -1.05266 (min) 1.13339 (max)
10:54:13 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.880292 (min) 1.23057 (max)
10:54:13 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000410511 (min) 0.000755044 (max)
10:54:13 DEBUG opendrift.models.basemodel:1524: x_wind: -5.68339 (min) 7.67464 (max)
10:54:13 DEBUG opendrift.models.basemodel:1524: y_wind: -6.29064 (min) 7.66016 (max)
10:54:13 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:13 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:13 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:13 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:13 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:13 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:13 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:13 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2261 (max)
10:54:13 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:13 DEBUG opendrift.models.basemodel:1527: 3820 active elements
10:54:13 DEBUG opendrift.models.basemodel:1538: 59.10091209740825 <- latitude -> 59.188999533667996
10:54:13 DEBUG opendrift.models.basemodel:1543: 10.90186700944429 <- longitude -> 11.03830815648619
10:54:13 DEBUG opendrift.models.basemodel:1548: -14.699563725577732 <- z -> 0.0
10:54:13 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:13 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:13 DEBUG opendrift.models.physics_methods:940: min: 0.042505, mean: 2.404084, max: 6.928255
10:54:13 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.042505, mean: 2.404084, max: 6.928255
10:54:13 DEBUG opendrift.models.basemodel:813: 567 elements hit coastline, moving back to water
10:54:13 DEBUG opendrift.models.basemodel:836: Lifting 108 elements to seafloor.
10:54:13 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:13 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:13 DEBUG opendrift.models.physics_methods:741: Advecting 37 of 3820 elements above 0.100m with wind-sheared ocean current (0.002512 m/s - 0.110588 m/s)
10:54:13 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:13 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:13 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.059399119312362664
10:54:13 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:13 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:13 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:13 DEBUG opendrift.models.oceandrift:572: 442 elements penetrated seafloor, lifting up
10:54:13 DEBUG opendrift.models.oceandrift:590: 88 elements reached seafloor, set to bottom
10:54:13 DEBUG opendrift.models.basemodel:836: Lifting 88 elements to seafloor.
10:54:13 DEBUG opendrift.models.sedimentdrift:112: Settling 88 elements at seafloor
10:54:13 DEBUG opendrift.models.oceandrift:572: 342 elements penetrated seafloor, lifting up
10:54:13 DEBUG opendrift.models.oceandrift:590: 73 elements reached seafloor, set to bottom
10:54:13 DEBUG opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
10:54:13 DEBUG opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
10:54:13 DEBUG opendrift.models.oceandrift:572: 286 elements penetrated seafloor, lifting up
10:54:13 DEBUG opendrift.models.oceandrift:590: 71 elements reached seafloor, set to bottom
10:54:13 DEBUG opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
10:54:13 DEBUG opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
10:54:13 DEBUG opendrift.models.oceandrift:572: 265 elements penetrated seafloor, lifting up
10:54:13 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:54:13 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:54:13 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:54:13 DEBUG opendrift.models.oceandrift:572: 268 elements penetrated seafloor, lifting up
10:54:13 DEBUG opendrift.models.oceandrift:590: 41 elements reached seafloor, set to bottom
10:54:13 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
10:54:13 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
10:54:13 DEBUG opendrift.models.oceandrift:572: 287 elements penetrated seafloor, lifting up
10:54:13 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:54:13 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:54:13 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:54:13 DEBUG opendrift.models.oceandrift:572: 255 elements penetrated seafloor, lifting up
10:54:13 DEBUG opendrift.models.oceandrift:590: 38 elements reached seafloor, set to bottom
10:54:13 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
10:54:13 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
10:54:13 DEBUG opendrift.models.oceandrift:572: 233 elements penetrated seafloor, lifting up
10:54:13 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:54:13 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:54:13 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:54:13 DEBUG opendrift.models.oceandrift:572: 236 elements penetrated seafloor, lifting up
10:54:13 DEBUG opendrift.models.oceandrift:590: 42 elements reached seafloor, set to bottom
10:54:13 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
10:54:13 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
10:54:13 DEBUG opendrift.models.oceandrift:572: 238 elements penetrated seafloor, lifting up
10:54:13 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:54:13 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:54:13 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:54:13 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:13 DEBUG opendrift.models.basemodel:2945: 3820 active elements (0 deactivated)
10:54:13 DEBUG opendrift.models.basemodel:1658: to be seeded: 6180, already seeded 3820
10:54:13 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:54:13 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:13 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:13 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:13 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:13 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:13 DEBUG opendrift.models.basemodel:1253: Data needed for 3854 elements
10:54:13 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:13 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 05:00:00 (before)
2023-08-22 06:00:00 (after)
10:54:13 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 05:00:00) in space (linearNDFast)
10:54:13 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:13 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:13 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:13 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:13 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:13 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:13 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2642 (max)
10:54:13 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:13 DEBUG opendrift.models.basemodel:1527: 3854 active elements
10:54:13 DEBUG opendrift.models.basemodel:1538: 59.10172842102793 <- latitude -> 59.19069009930714
10:54:13 DEBUG opendrift.models.basemodel:1543: 10.89690926235295 <- longitude -> 11.04010672541812
10:54:13 DEBUG opendrift.models.basemodel:1548: -14.933231582641602 <- z -> 0.0
10:54:13 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:13 DEBUG opendrift.models.basemodel:836: Lifting 394 elements to seafloor.
10:54:13 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:13 INFO opendrift.models.basemodel:2882: 2023-08-22 05:12:19.552469 - step 111 of 216 - 3854 active elements (0 deactivated)
10:54:13 DEBUG opendrift.models.basemodel:2888: 6146 elements scheduled.
10:54:13 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:13 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:13 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:13 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:13 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:13 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:13 DEBUG opendrift.models.basemodel:1253: Data needed for 3854 elements
10:54:13 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:13 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:13 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:13 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:13 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:13 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:13 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:13 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:13 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:13 DEBUG opendrift.models.basemodel:1253: Data needed for 3854 elements
10:54:13 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:13 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 05:00:00 (before)
2023-08-22 06:00:00 (after)
10:54:14 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:14 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:14 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:14 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:14 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:14 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:14 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x22x5) for time after (2023-08-22 06:00:00)
10:54:14 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 05:00:00) in space (linearNDFast)
10:54:14 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:14 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 06:00:00) in space (linearNDFast)
10:54:14 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2064 elements, expanding data 1
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2064 elements, expanding data 1
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2197 elements, expanding data 1
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 390 elements, expanding data 2
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 3
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2197 elements, expanding data 1
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 390 elements, expanding data 2
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 3
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2197 elements, expanding data 1
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 390 elements, expanding data 2
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 3
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2197 elements, expanding data 1
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 390 elements, expanding data 2
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 3
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2197 elements, expanding data 1
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 390 elements, expanding data 2
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 48 elements, expanding data 3
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2920 elements, expanding data 1
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 850 elements, expanding data 2
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2920 elements, expanding data 1
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 850 elements, expanding data 2
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2920 elements, expanding data 1
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 850 elements, expanding data 2
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2920 elements, expanding data 1
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 850 elements, expanding data 2
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2920 elements, expanding data 1
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 850 elements, expanding data 2
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2064 elements, expanding data 1
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2064 elements, expanding data 1
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2064 elements, expanding data 1
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2064 elements, expanding data 1
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2064 elements, expanding data 1
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
10:54:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:14 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 05:00:00, weight 0.79) and
after (2023-08-22 06:00:00, weight 0.21) in time
10:54:14 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.103101307821866 and -58.9599038263651 degrees.
10:54:14 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.103101307821866 and -58.9599038263651 degrees.
10:54:14 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:14 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:14 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:14 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:14 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:14 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:14 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.709301 (min) 0.93475 (max)
10:54:14 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.886149 (min) 0.885759 (max)
10:54:14 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000401793 (min) 0.000773681 (max)
10:54:14 DEBUG opendrift.models.basemodel:1524: x_wind: -6.86157 (min) 8.30609 (max)
10:54:14 DEBUG opendrift.models.basemodel:1524: y_wind: -6.21948 (min) 8.13325 (max)
10:54:14 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:14 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:14 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:14 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:14 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:14 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:14 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:14 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.2642 (max)
10:54:14 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:14 DEBUG opendrift.models.basemodel:1527: 3854 active elements
10:54:14 DEBUG opendrift.models.basemodel:1538: 59.10172842102793 <- latitude -> 59.19069009930714
10:54:14 DEBUG opendrift.models.basemodel:1543: 10.89690926235295 <- longitude -> 11.04010672541812
10:54:14 DEBUG opendrift.models.basemodel:1548: -14.81938362121582 <- z -> 0.0
10:54:14 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:14 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:14 DEBUG opendrift.models.physics_methods:940: min: 0.053147, mean: 2.331145, max: 7.593498
10:54:14 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.053147, mean: 2.331145, max: 7.593498
10:54:14 DEBUG opendrift.models.basemodel:813: 577 elements hit coastline, moving back to water
10:54:14 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:54:14 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:14 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:14 DEBUG opendrift.models.physics_methods:741: Advecting 36 of 3854 elements above 0.100m with wind-sheared ocean current (0.000648 m/s - 0.116171 m/s)
10:54:14 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:14 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:14 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.07135279086287498
10:54:14 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:14 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:14 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:14 DEBUG opendrift.models.oceandrift:572: 451 elements penetrated seafloor, lifting up
10:54:14 DEBUG opendrift.models.oceandrift:590: 79 elements reached seafloor, set to bottom
10:54:14 DEBUG opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
10:54:14 DEBUG opendrift.models.sedimentdrift:112: Settling 79 elements at seafloor
10:54:14 DEBUG opendrift.models.oceandrift:572: 338 elements penetrated seafloor, lifting up
10:54:14 DEBUG opendrift.models.oceandrift:590: 68 elements reached seafloor, set to bottom
10:54:14 DEBUG opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
10:54:14 DEBUG opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
10:54:14 DEBUG opendrift.models.oceandrift:572: 313 elements penetrated seafloor, lifting up
10:54:14 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:54:14 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:54:14 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:54:14 DEBUG opendrift.models.oceandrift:572: 300 elements penetrated seafloor, lifting up
10:54:14 DEBUG opendrift.models.oceandrift:590: 54 elements reached seafloor, set to bottom
10:54:14 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
10:54:14 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
10:54:14 DEBUG opendrift.models.oceandrift:572: 297 elements penetrated seafloor, lifting up
10:54:14 DEBUG opendrift.models.oceandrift:590: 37 elements reached seafloor, set to bottom
10:54:14 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
10:54:14 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
10:54:14 DEBUG opendrift.models.oceandrift:572: 255 elements penetrated seafloor, lifting up
10:54:14 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:54:14 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:54:14 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:54:14 DEBUG opendrift.models.oceandrift:572: 224 elements penetrated seafloor, lifting up
10:54:14 DEBUG opendrift.models.oceandrift:590: 53 elements reached seafloor, set to bottom
10:54:14 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
10:54:14 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
10:54:14 DEBUG opendrift.models.oceandrift:572: 222 elements penetrated seafloor, lifting up
10:54:14 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:54:14 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:54:14 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:54:14 DEBUG opendrift.models.oceandrift:572: 236 elements penetrated seafloor, lifting up
10:54:14 DEBUG opendrift.models.oceandrift:590: 53 elements reached seafloor, set to bottom
10:54:14 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
10:54:14 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
10:54:14 DEBUG opendrift.models.oceandrift:572: 217 elements penetrated seafloor, lifting up
10:54:14 DEBUG opendrift.models.oceandrift:590: 37 elements reached seafloor, set to bottom
10:54:14 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
10:54:14 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
10:54:14 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:14 DEBUG opendrift.models.basemodel:2945: 3854 active elements (0 deactivated)
10:54:14 DEBUG opendrift.models.basemodel:1658: to be seeded: 6146, already seeded 3854
10:54:14 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:14 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:14 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:14 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:14 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:14 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:14 DEBUG opendrift.models.basemodel:1253: Data needed for 3889 elements
10:54:14 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:14 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 05:00:00 (before)
2023-08-22 06:00:00 (after)
10:54:14 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 05:00:00) in space (linearNDFast)
10:54:14 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:14 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:14 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:14 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:14 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:14 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:14 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3111 (max)
10:54:14 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:14 DEBUG opendrift.models.basemodel:1527: 3889 active elements
10:54:14 DEBUG opendrift.models.basemodel:1538: 59.10171736335491 <- latitude -> 59.188220122832604
10:54:14 DEBUG opendrift.models.basemodel:1543: 10.898607136494157 <- longitude -> 11.041762200607964
10:54:14 DEBUG opendrift.models.basemodel:1548: -14.729754447937012 <- z -> 0.0
10:54:14 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:14 DEBUG opendrift.models.basemodel:836: Lifting 358 elements to seafloor.
10:54:14 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:14 INFO opendrift.models.basemodel:2882: 2023-08-22 05:22:19.552469 - step 112 of 216 - 3889 active elements (0 deactivated)
10:54:14 DEBUG opendrift.models.basemodel:2888: 6111 elements scheduled.
10:54:14 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:14 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:14 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:14 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:14 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:14 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:14 DEBUG opendrift.models.basemodel:1253: Data needed for 3889 elements
10:54:14 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:14 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:14 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:14 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:14 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:14 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:14 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:14 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:14 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:14 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:14 DEBUG opendrift.models.basemodel:1253: Data needed for 3889 elements
10:54:14 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:14 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 05:00:00 (before)
2023-08-22 06:00:00 (after)
10:54:15 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:15 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:15 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:15 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:15 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:15 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:15 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x22x5) for time after (2023-08-22 06:00:00)
10:54:15 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 05:00:00) in space (linearNDFast)
10:54:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:15 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 06:00:00) in space (linearNDFast)
10:54:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2059 elements, expanding data 1
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2059 elements, expanding data 1
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2210 elements, expanding data 1
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 383 elements, expanding data 2
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 3
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2210 elements, expanding data 1
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 383 elements, expanding data 2
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 3
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2210 elements, expanding data 1
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 383 elements, expanding data 2
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 3
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2210 elements, expanding data 1
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 383 elements, expanding data 2
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 3
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2210 elements, expanding data 1
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 383 elements, expanding data 2
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 3
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2926 elements, expanding data 1
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 863 elements, expanding data 2
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2926 elements, expanding data 1
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 863 elements, expanding data 2
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2926 elements, expanding data 1
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 863 elements, expanding data 2
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2926 elements, expanding data 1
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 863 elements, expanding data 2
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2926 elements, expanding data 1
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 863 elements, expanding data 2
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2059 elements, expanding data 1
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2059 elements, expanding data 1
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2059 elements, expanding data 1
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2059 elements, expanding data 1
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2059 elements, expanding data 1
10:54:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 55 elements, expanding data 2
10:54:15 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 05:00:00, weight 0.63) and
after (2023-08-22 06:00:00, weight 0.37) in time
10:54:15 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10140343383052 and -58.95824834572997 degrees.
10:54:15 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10140343383052 and -58.95824834572997 degrees.
10:54:15 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:15 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:15 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:15 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:15 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:15 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:15 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.991691 (min) 1.01604 (max)
10:54:15 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.00852 (min) 0.796978 (max)
10:54:15 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000481586 (min) 0.000836727 (max)
10:54:15 DEBUG opendrift.models.basemodel:1524: x_wind: -5.90312 (min) 7.6769 (max)
10:54:15 DEBUG opendrift.models.basemodel:1524: y_wind: -8.30083 (min) 8.17949 (max)
10:54:15 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:15 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:15 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:15 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:15 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:15 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:15 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:15 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3111 (max)
10:54:15 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:15 DEBUG opendrift.models.basemodel:1527: 3889 active elements
10:54:15 DEBUG opendrift.models.basemodel:1538: 59.10171736335491 <- latitude -> 59.188220122832604
10:54:15 DEBUG opendrift.models.basemodel:1543: 10.898607136494157 <- longitude -> 11.041762200607964
10:54:15 DEBUG opendrift.models.basemodel:1548: -14.729754447937012 <- z -> 0.0
10:54:15 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:15 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:15 DEBUG opendrift.models.physics_methods:940: min: 0.051890, mean: 2.315251, max: 7.518252
10:54:15 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.051890, mean: 2.315251, max: 7.518252
10:54:15 DEBUG opendrift.models.basemodel:813: 557 elements hit coastline, moving back to water
10:54:15 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
10:54:15 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:15 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:15 DEBUG opendrift.models.physics_methods:741: Advecting 36 of 3889 elements above 0.100m with wind-sheared ocean current (0.000806 m/s - 0.116617 m/s)
10:54:15 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:15 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:15 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.06994577242501258
10:54:15 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:15 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:15 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:15 DEBUG opendrift.models.oceandrift:572: 434 elements penetrated seafloor, lifting up
10:54:15 DEBUG opendrift.models.oceandrift:590: 75 elements reached seafloor, set to bottom
10:54:15 DEBUG opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
10:54:15 DEBUG opendrift.models.sedimentdrift:112: Settling 75 elements at seafloor
10:54:15 DEBUG opendrift.models.oceandrift:572: 339 elements penetrated seafloor, lifting up
10:54:15 DEBUG opendrift.models.oceandrift:590: 64 elements reached seafloor, set to bottom
10:54:15 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
10:54:15 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
10:54:15 DEBUG opendrift.models.oceandrift:572: 305 elements penetrated seafloor, lifting up
10:54:15 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:54:15 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:54:15 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:54:15 DEBUG opendrift.models.oceandrift:572: 280 elements penetrated seafloor, lifting up
10:54:15 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:54:15 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:54:15 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:54:15 DEBUG opendrift.models.oceandrift:572: 255 elements penetrated seafloor, lifting up
10:54:15 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:54:15 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:54:15 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:54:15 DEBUG opendrift.models.oceandrift:572: 273 elements penetrated seafloor, lifting up
10:54:15 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:54:15 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:54:15 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:54:15 DEBUG opendrift.models.oceandrift:572: 242 elements penetrated seafloor, lifting up
10:54:15 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:54:15 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:54:15 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:54:15 DEBUG opendrift.models.oceandrift:572: 258 elements penetrated seafloor, lifting up
10:54:15 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:54:15 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:54:15 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:54:15 DEBUG opendrift.models.oceandrift:572: 243 elements penetrated seafloor, lifting up
10:54:15 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:54:15 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:54:15 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:54:15 DEBUG opendrift.models.oceandrift:572: 236 elements penetrated seafloor, lifting up
10:54:15 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:54:15 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:54:15 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:54:15 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:15 DEBUG opendrift.models.basemodel:2945: 3889 active elements (0 deactivated)
10:54:15 DEBUG opendrift.models.basemodel:1658: to be seeded: 6111, already seeded 3889
10:54:15 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:15 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:15 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:15 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:15 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:15 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:15 DEBUG opendrift.models.basemodel:1253: Data needed for 3924 elements
10:54:15 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:15 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 05:00:00 (before)
2023-08-22 06:00:00 (after)
10:54:15 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 05:00:00) in space (linearNDFast)
10:54:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:15 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:15 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:15 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:15 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:15 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:15 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3535 (max)
10:54:15 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:15 DEBUG opendrift.models.basemodel:1527: 3924 active elements
10:54:15 DEBUG opendrift.models.basemodel:1538: 59.101490449578534 <- latitude -> 59.18838672717361
10:54:15 DEBUG opendrift.models.basemodel:1543: 10.896623297055928 <- longitude -> 11.040865579860927
10:54:15 DEBUG opendrift.models.basemodel:1548: -14.719754447937012 <- z -> 0.0
10:54:15 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:15 DEBUG opendrift.models.basemodel:836: Lifting 363 elements to seafloor.
10:54:15 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:15 INFO opendrift.models.basemodel:2882: 2023-08-22 05:32:19.552469 - step 113 of 216 - 3924 active elements (0 deactivated)
10:54:15 DEBUG opendrift.models.basemodel:2888: 6076 elements scheduled.
10:54:15 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:15 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:15 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:15 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:15 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:15 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:15 DEBUG opendrift.models.basemodel:1253: Data needed for 3924 elements
10:54:15 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:15 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:15 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:15 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:15 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:15 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:15 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:15 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:15 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:15 DEBUG opendrift.models.basemodel:1253: Data needed for 3924 elements
10:54:15 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:15 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 05:00:00 (before)
2023-08-22 06:00:00 (after)
10:54:16 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:16 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:16 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:16 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:16 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:16 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:16 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x22x5) for time after (2023-08-22 06:00:00)
10:54:16 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 05:00:00) in space (linearNDFast)
10:54:16 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:16 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 06:00:00) in space (linearNDFast)
10:54:16 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2068 elements, expanding data 1
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 2
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2068 elements, expanding data 1
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 2
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2208 elements, expanding data 1
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 399 elements, expanding data 2
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 3
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2208 elements, expanding data 1
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 399 elements, expanding data 2
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 3
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2208 elements, expanding data 1
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 399 elements, expanding data 2
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 3
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2208 elements, expanding data 1
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 399 elements, expanding data 2
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 3
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2208 elements, expanding data 1
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 399 elements, expanding data 2
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 51 elements, expanding data 3
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2959 elements, expanding data 1
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 860 elements, expanding data 2
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2959 elements, expanding data 1
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 860 elements, expanding data 2
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2959 elements, expanding data 1
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 860 elements, expanding data 2
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2959 elements, expanding data 1
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 860 elements, expanding data 2
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2959 elements, expanding data 1
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 860 elements, expanding data 2
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2068 elements, expanding data 1
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 2
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2068 elements, expanding data 1
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 2
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2068 elements, expanding data 1
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 2
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2068 elements, expanding data 1
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 2
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2068 elements, expanding data 1
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 60 elements, expanding data 2
10:54:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:16 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 05:00:00, weight 0.46) and
after (2023-08-22 06:00:00, weight 0.54) in time
10:54:16 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.103387276795935 and -58.95914497585986 degrees.
10:54:16 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.103387276795935 and -58.95914497585986 degrees.
10:54:16 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:16 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:16 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:16 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:16 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:16 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:16 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.73645 (min) 1.15036 (max)
10:54:16 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.903963 (min) 0.852226 (max)
10:54:16 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000378395 (min) 0.000770696 (max)
10:54:16 DEBUG opendrift.models.basemodel:1524: x_wind: -6.29068 (min) 9.22065 (max)
10:54:16 DEBUG opendrift.models.basemodel:1524: y_wind: -6.3797 (min) 9.0837 (max)
10:54:16 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:16 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:16 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:16 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:16 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:16 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:16 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:16 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.3535 (max)
10:54:16 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:16 DEBUG opendrift.models.basemodel:1527: 3924 active elements
10:54:16 DEBUG opendrift.models.basemodel:1538: 59.101490449578534 <- latitude -> 59.18838672717361
10:54:16 DEBUG opendrift.models.basemodel:1543: 10.896623297055928 <- longitude -> 11.040865579860927
10:54:16 DEBUG opendrift.models.basemodel:1548: -14.719754447937012 <- z -> 0.0
10:54:16 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:16 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:16 DEBUG opendrift.models.physics_methods:940: min: 0.025539, mean: 2.297923, max: 8.239926
10:54:16 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.025539, mean: 2.297923, max: 8.239926
10:54:16 DEBUG opendrift.models.basemodel:813: 582 elements hit coastline, moving back to water
10:54:16 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:54:16 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:16 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:16 DEBUG opendrift.models.physics_methods:741: Advecting 35 of 3924 elements above 0.100m with wind-sheared ocean current (0.006810 m/s - 0.144756 m/s)
10:54:16 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:16 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:16 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.08401755020101546
10:54:16 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:16 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:16 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:16 DEBUG opendrift.models.oceandrift:572: 443 elements penetrated seafloor, lifting up
10:54:16 DEBUG opendrift.models.oceandrift:590: 76 elements reached seafloor, set to bottom
10:54:16 DEBUG opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
10:54:16 DEBUG opendrift.models.sedimentdrift:112: Settling 76 elements at seafloor
10:54:16 DEBUG opendrift.models.oceandrift:572: 339 elements penetrated seafloor, lifting up
10:54:16 DEBUG opendrift.models.oceandrift:590: 68 elements reached seafloor, set to bottom
10:54:16 DEBUG opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
10:54:16 DEBUG opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
10:54:16 DEBUG opendrift.models.oceandrift:572: 252 elements penetrated seafloor, lifting up
10:54:16 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:54:16 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:54:16 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:54:16 DEBUG opendrift.models.oceandrift:572: 271 elements penetrated seafloor, lifting up
10:54:16 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:54:16 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:54:16 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:54:16 DEBUG opendrift.models.oceandrift:572: 261 elements penetrated seafloor, lifting up
10:54:16 DEBUG opendrift.models.oceandrift:590: 62 elements reached seafloor, set to bottom
10:54:16 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
10:54:16 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
10:54:16 DEBUG opendrift.models.oceandrift:572: 218 elements penetrated seafloor, lifting up
10:54:16 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:54:16 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:54:16 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:54:16 DEBUG opendrift.models.oceandrift:572: 247 elements penetrated seafloor, lifting up
10:54:16 DEBUG opendrift.models.oceandrift:590: 63 elements reached seafloor, set to bottom
10:54:16 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
10:54:16 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
10:54:16 DEBUG opendrift.models.oceandrift:572: 212 elements penetrated seafloor, lifting up
10:54:16 DEBUG opendrift.models.oceandrift:590: 44 elements reached seafloor, set to bottom
10:54:16 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
10:54:16 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
10:54:16 DEBUG opendrift.models.oceandrift:572: 220 elements penetrated seafloor, lifting up
10:54:16 DEBUG opendrift.models.oceandrift:590: 41 elements reached seafloor, set to bottom
10:54:16 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
10:54:16 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
10:54:16 DEBUG opendrift.models.oceandrift:572: 226 elements penetrated seafloor, lifting up
10:54:16 DEBUG opendrift.models.oceandrift:590: 40 elements reached seafloor, set to bottom
10:54:16 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
10:54:16 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
10:54:16 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:16 DEBUG opendrift.models.basemodel:2945: 3924 active elements (0 deactivated)
10:54:16 DEBUG opendrift.models.basemodel:1658: to be seeded: 6076, already seeded 3924
10:54:16 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:54:16 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:16 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:16 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:16 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:16 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:16 DEBUG opendrift.models.basemodel:1253: Data needed for 3958 elements
10:54:16 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:16 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 05:00:00 (before)
2023-08-22 06:00:00 (after)
10:54:16 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 05:00:00) in space (linearNDFast)
10:54:16 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:16 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:16 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:16 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:16 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:16 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:16 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.375 (max)
10:54:16 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:16 DEBUG opendrift.models.basemodel:1527: 3958 active elements
10:54:16 DEBUG opendrift.models.basemodel:1538: 59.10022906591555 <- latitude -> 59.189585789209254
10:54:16 DEBUG opendrift.models.basemodel:1543: 10.895243157055916 <- longitude -> 11.044755004914709
10:54:16 DEBUG opendrift.models.basemodel:1548: -14.833169937133789 <- z -> 0.0
10:54:16 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:16 DEBUG opendrift.models.basemodel:836: Lifting 366 elements to seafloor.
10:54:16 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:16 INFO opendrift.models.basemodel:2882: 2023-08-22 05:42:19.552469 - step 114 of 216 - 3958 active elements (0 deactivated)
10:54:16 DEBUG opendrift.models.basemodel:2888: 6042 elements scheduled.
10:54:16 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:16 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:16 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:16 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:16 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:16 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:16 DEBUG opendrift.models.basemodel:1253: Data needed for 3958 elements
10:54:16 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:16 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:16 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:16 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:16 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:16 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:16 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:16 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:16 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:16 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:16 DEBUG opendrift.models.basemodel:1253: Data needed for 3958 elements
10:54:16 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:16 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 05:00:00 (before)
2023-08-22 06:00:00 (after)
10:54:17 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:17 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:17 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:17 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:17 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:17 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:17 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x22x5) for time after (2023-08-22 06:00:00)
10:54:17 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 05:00:00) in space (linearNDFast)
10:54:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:17 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 06:00:00) in space (linearNDFast)
10:54:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2082 elements, expanding data 1
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2082 elements, expanding data 1
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2237 elements, expanding data 1
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 402 elements, expanding data 2
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 3
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2237 elements, expanding data 1
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 402 elements, expanding data 2
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 3
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2237 elements, expanding data 1
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 402 elements, expanding data 2
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 3
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2237 elements, expanding data 1
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 402 elements, expanding data 2
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 3
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2237 elements, expanding data 1
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 402 elements, expanding data 2
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 53 elements, expanding data 3
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2981 elements, expanding data 1
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 835 elements, expanding data 2
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2981 elements, expanding data 1
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 835 elements, expanding data 2
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2981 elements, expanding data 1
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 835 elements, expanding data 2
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2981 elements, expanding data 1
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 835 elements, expanding data 2
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2981 elements, expanding data 1
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 835 elements, expanding data 2
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2082 elements, expanding data 1
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2082 elements, expanding data 1
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2082 elements, expanding data 1
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2082 elements, expanding data 1
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2082 elements, expanding data 1
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
10:54:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:17 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 05:00:00, weight 0.29) and
after (2023-08-22 06:00:00, weight 0.71) in time
10:54:17 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10476740972162 and -58.95525553859868 degrees.
10:54:17 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10476740972162 and -58.95525553859868 degrees.
10:54:17 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:17 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:17 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:17 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:17 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:17 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:17 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.804614 (min) 1.056 (max)
10:54:17 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.972108 (min) 0.756521 (max)
10:54:17 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000445143 (min) 0.000740029 (max)
10:54:17 DEBUG opendrift.models.basemodel:1524: x_wind: -6.29781 (min) 7.89486 (max)
10:54:17 DEBUG opendrift.models.basemodel:1524: y_wind: -6.5685 (min) 7.39178 (max)
10:54:17 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:17 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:17 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:17 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:17 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:17 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:17 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:17 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.375 (max)
10:54:17 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:17 DEBUG opendrift.models.basemodel:1527: 3958 active elements
10:54:17 DEBUG opendrift.models.basemodel:1538: 59.10022906591555 <- latitude -> 59.189585789209254
10:54:17 DEBUG opendrift.models.basemodel:1543: 10.895243157055916 <- longitude -> 11.044755004914709
10:54:17 DEBUG opendrift.models.basemodel:1548: -14.833169937133789 <- z -> 0.0
10:54:17 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:17 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:17 DEBUG opendrift.models.physics_methods:940: min: 0.034788, mean: 2.272899, max: 6.981524
10:54:17 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.034788, mean: 2.272899, max: 6.981524
10:54:17 DEBUG opendrift.models.basemodel:813: 628 elements hit coastline, moving back to water
10:54:17 DEBUG opendrift.models.basemodel:836: Lifting 139 elements to seafloor.
10:54:17 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:17 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:17 DEBUG opendrift.models.physics_methods:741: Advecting 34 of 3958 elements above 0.100m with wind-sheared ocean current (0.007993 m/s - 0.097704 m/s)
10:54:17 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:17 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:17 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.060315967226343144
10:54:17 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:17 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:17 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:17 DEBUG opendrift.models.oceandrift:572: 469 elements penetrated seafloor, lifting up
10:54:17 DEBUG opendrift.models.oceandrift:590: 78 elements reached seafloor, set to bottom
10:54:17 DEBUG opendrift.models.basemodel:836: Lifting 78 elements to seafloor.
10:54:17 DEBUG opendrift.models.sedimentdrift:112: Settling 78 elements at seafloor
10:54:17 DEBUG opendrift.models.oceandrift:572: 347 elements penetrated seafloor, lifting up
10:54:17 DEBUG opendrift.models.oceandrift:590: 78 elements reached seafloor, set to bottom
10:54:17 DEBUG opendrift.models.basemodel:836: Lifting 78 elements to seafloor.
10:54:17 DEBUG opendrift.models.sedimentdrift:112: Settling 78 elements at seafloor
10:54:17 DEBUG opendrift.models.oceandrift:572: 284 elements penetrated seafloor, lifting up
10:54:17 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:54:17 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:54:17 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:54:17 DEBUG opendrift.models.oceandrift:572: 257 elements penetrated seafloor, lifting up
10:54:17 DEBUG opendrift.models.oceandrift:590: 60 elements reached seafloor, set to bottom
10:54:17 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
10:54:17 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
10:54:17 DEBUG opendrift.models.oceandrift:572: 259 elements penetrated seafloor, lifting up
10:54:17 DEBUG opendrift.models.oceandrift:590: 41 elements reached seafloor, set to bottom
10:54:17 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
10:54:17 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
10:54:17 DEBUG opendrift.models.oceandrift:572: 255 elements penetrated seafloor, lifting up
10:54:17 DEBUG opendrift.models.oceandrift:590: 34 elements reached seafloor, set to bottom
10:54:17 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
10:54:17 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
10:54:17 DEBUG opendrift.models.oceandrift:572: 253 elements penetrated seafloor, lifting up
10:54:17 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:54:17 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:54:17 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:54:17 DEBUG opendrift.models.oceandrift:572: 262 elements penetrated seafloor, lifting up
10:54:17 DEBUG opendrift.models.oceandrift:590: 43 elements reached seafloor, set to bottom
10:54:17 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
10:54:17 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
10:54:17 DEBUG opendrift.models.oceandrift:572: 227 elements penetrated seafloor, lifting up
10:54:17 DEBUG opendrift.models.oceandrift:590: 54 elements reached seafloor, set to bottom
10:54:17 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
10:54:17 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
10:54:17 DEBUG opendrift.models.oceandrift:572: 243 elements penetrated seafloor, lifting up
10:54:17 DEBUG opendrift.models.oceandrift:590: 38 elements reached seafloor, set to bottom
10:54:17 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
10:54:17 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
10:54:17 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:17 DEBUG opendrift.models.basemodel:2945: 3958 active elements (0 deactivated)
10:54:17 DEBUG opendrift.models.basemodel:1658: to be seeded: 6042, already seeded 3958
10:54:17 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:17 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:17 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:17 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:17 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:17 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:17 DEBUG opendrift.models.basemodel:1253: Data needed for 3993 elements
10:54:17 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:17 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 05:00:00 (before)
2023-08-22 06:00:00 (after)
10:54:17 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 05:00:00) in space (linearNDFast)
10:54:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:17 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:17 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:17 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:17 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:17 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:17 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4154 (max)
10:54:17 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:17 DEBUG opendrift.models.basemodel:1527: 3993 active elements
10:54:17 DEBUG opendrift.models.basemodel:1538: 59.10042711942159 <- latitude -> 59.18890605300099
10:54:17 DEBUG opendrift.models.basemodel:1543: 10.895828138554176 <- longitude -> 11.039397907807379
10:54:17 DEBUG opendrift.models.basemodel:1548: -14.862859954833985 <- z -> 0.0
10:54:17 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:17 DEBUG opendrift.models.basemodel:836: Lifting 355 elements to seafloor.
10:54:17 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:17 INFO opendrift.models.basemodel:2882: 2023-08-22 05:52:19.552469 - step 115 of 216 - 3993 active elements (0 deactivated)
10:54:17 DEBUG opendrift.models.basemodel:2888: 6007 elements scheduled.
10:54:17 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:17 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:17 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:17 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:17 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:17 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:17 DEBUG opendrift.models.basemodel:1253: Data needed for 3993 elements
10:54:17 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:17 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:17 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:17 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:17 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:17 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:17 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:17 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:17 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:17 DEBUG opendrift.models.basemodel:1253: Data needed for 3993 elements
10:54:17 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:17 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 05:00:00 (before)
2023-08-22 06:00:00 (after)
10:54:18 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:18 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:18 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:18 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:18 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:18 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:18 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x22x5) for time after (2023-08-22 06:00:00)
10:54:18 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 05:00:00) in space (linearNDFast)
10:54:18 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:18 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 06:00:00) in space (linearNDFast)
10:54:18 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2102 elements, expanding data 1
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 63 elements, expanding data 2
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2102 elements, expanding data 1
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 63 elements, expanding data 2
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2251 elements, expanding data 1
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 2
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 3
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2251 elements, expanding data 1
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 2
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 3
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2251 elements, expanding data 1
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 2
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 3
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2251 elements, expanding data 1
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 2
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 3
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2251 elements, expanding data 1
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 420 elements, expanding data 2
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 3
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3014 elements, expanding data 1
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 853 elements, expanding data 2
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3014 elements, expanding data 1
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 853 elements, expanding data 2
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3014 elements, expanding data 1
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 853 elements, expanding data 2
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3014 elements, expanding data 1
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 853 elements, expanding data 2
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3014 elements, expanding data 1
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 853 elements, expanding data 2
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2102 elements, expanding data 1
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 63 elements, expanding data 2
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2102 elements, expanding data 1
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 63 elements, expanding data 2
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2102 elements, expanding data 1
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 63 elements, expanding data 2
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2102 elements, expanding data 1
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 63 elements, expanding data 2
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2102 elements, expanding data 1
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 63 elements, expanding data 2
10:54:18 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:18 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 05:00:00, weight 0.13) and
after (2023-08-22 06:00:00, weight 0.87) in time
10:54:18 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.104182429008006 and -58.96061264157082 degrees.
10:54:18 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.104182429008006 and -58.96061264157082 degrees.
10:54:18 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:18 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:18 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:18 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:18 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:18 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:18 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.828992 (min) 1.06339 (max)
10:54:18 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.02519 (min) 0.829042 (max)
10:54:18 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000434581 (min) 0.000721666 (max)
10:54:18 DEBUG opendrift.models.basemodel:1524: x_wind: -6.78375 (min) 9.20066 (max)
10:54:18 DEBUG opendrift.models.basemodel:1524: y_wind: -7.2493 (min) 7.27244 (max)
10:54:18 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:18 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:18 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:18 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:18 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:18 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:18 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:18 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4154 (max)
10:54:18 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:18 DEBUG opendrift.models.basemodel:1527: 3993 active elements
10:54:18 DEBUG opendrift.models.basemodel:1538: 59.10042711942159 <- latitude -> 59.18890605300099
10:54:18 DEBUG opendrift.models.basemodel:1543: 10.895828138554176 <- longitude -> 11.039397907807379
10:54:18 DEBUG opendrift.models.basemodel:1548: -14.862859954833985 <- z -> 0.0
10:54:18 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:18 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:18 DEBUG opendrift.models.physics_methods:940: min: 0.061420, mean: 2.271271, max: 8.064147
10:54:18 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.061420, mean: 2.271271, max: 8.064147
10:54:18 DEBUG opendrift.models.basemodel:813: 598 elements hit coastline, moving back to water
10:54:18 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:54:18 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:18 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:18 DEBUG opendrift.models.physics_methods:741: Advecting 38 of 3993 elements above 0.100m with wind-sheared ocean current (0.001930 m/s - 0.140578 m/s)
10:54:18 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:18 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:18 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.08047135385044098
10:54:18 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:18 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:18 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:18 DEBUG opendrift.models.oceandrift:572: 440 elements penetrated seafloor, lifting up
10:54:18 DEBUG opendrift.models.oceandrift:590: 84 elements reached seafloor, set to bottom
10:54:18 DEBUG opendrift.models.basemodel:836: Lifting 84 elements to seafloor.
10:54:18 DEBUG opendrift.models.sedimentdrift:112: Settling 84 elements at seafloor
10:54:18 DEBUG opendrift.models.oceandrift:572: 331 elements penetrated seafloor, lifting up
10:54:18 DEBUG opendrift.models.oceandrift:590: 75 elements reached seafloor, set to bottom
10:54:18 DEBUG opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
10:54:18 DEBUG opendrift.models.sedimentdrift:112: Settling 75 elements at seafloor
10:54:18 DEBUG opendrift.models.oceandrift:572: 339 elements penetrated seafloor, lifting up
10:54:18 DEBUG opendrift.models.oceandrift:590: 70 elements reached seafloor, set to bottom
10:54:18 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
10:54:18 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
10:54:18 DEBUG opendrift.models.oceandrift:572: 275 elements penetrated seafloor, lifting up
10:54:18 DEBUG opendrift.models.oceandrift:590: 60 elements reached seafloor, set to bottom
10:54:18 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
10:54:18 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
10:54:18 DEBUG opendrift.models.oceandrift:572: 268 elements penetrated seafloor, lifting up
10:54:18 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:54:18 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:54:18 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:54:18 DEBUG opendrift.models.oceandrift:572: 255 elements penetrated seafloor, lifting up
10:54:18 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:54:18 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:54:18 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:54:18 DEBUG opendrift.models.oceandrift:572: 262 elements penetrated seafloor, lifting up
10:54:18 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:54:18 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:54:18 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:54:18 DEBUG opendrift.models.oceandrift:572: 251 elements penetrated seafloor, lifting up
10:54:18 DEBUG opendrift.models.oceandrift:590: 44 elements reached seafloor, set to bottom
10:54:18 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
10:54:18 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
10:54:18 DEBUG opendrift.models.oceandrift:572: 244 elements penetrated seafloor, lifting up
10:54:18 DEBUG opendrift.models.oceandrift:590: 35 elements reached seafloor, set to bottom
10:54:18 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
10:54:18 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
10:54:18 DEBUG opendrift.models.oceandrift:572: 227 elements penetrated seafloor, lifting up
10:54:18 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:54:18 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:54:18 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:54:18 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:18 DEBUG opendrift.models.basemodel:2945: 3993 active elements (0 deactivated)
10:54:18 DEBUG opendrift.models.basemodel:1658: to be seeded: 6007, already seeded 3993
10:54:18 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:18 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:18 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:18 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:18 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:18 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:18 DEBUG opendrift.models.basemodel:1253: Data needed for 4028 elements
10:54:18 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:18 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 06:00:00 (before)
2023-08-22 07:00:00 (after)
10:54:18 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 06:00:00) in space (linearNDFast)
10:54:18 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:18 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:18 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:18 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:18 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:18 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:18 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4149 (max)
10:54:18 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:18 DEBUG opendrift.models.basemodel:1527: 4028 active elements
10:54:18 DEBUG opendrift.models.basemodel:1538: 59.101125183339875 <- latitude -> 59.189324106648364
10:54:18 DEBUG opendrift.models.basemodel:1543: 10.895873311978075 <- longitude -> 11.042252303996785
10:54:18 DEBUG opendrift.models.basemodel:1548: -14.761489868164062 <- z -> 0.0
10:54:18 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:18 DEBUG opendrift.models.basemodel:836: Lifting 354 elements to seafloor.
10:54:18 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:18 INFO opendrift.models.basemodel:2882: 2023-08-22 06:02:19.552469 - step 116 of 216 - 4028 active elements (0 deactivated)
10:54:18 DEBUG opendrift.models.basemodel:2888: 5972 elements scheduled.
10:54:18 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:18 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:18 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:18 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:18 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:18 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:18 DEBUG opendrift.models.basemodel:1253: Data needed for 4028 elements
10:54:18 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:18 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:18 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:18 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:18 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:18 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:18 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:18 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:18 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:18 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:18 DEBUG opendrift.models.basemodel:1253: Data needed for 4028 elements
10:54:18 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:18 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 06:00:00 (before)
2023-08-22 07:00:00 (after)
10:54:19 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:19 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:19 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:19 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:19 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:19 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:19 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x22x5) for time after (2023-08-22 07:00:00)
10:54:19 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 06:00:00) in space (linearNDFast)
10:54:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:19 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 07:00:00) in space (linearNDFast)
10:54:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2109 elements, expanding data 1
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2109 elements, expanding data 1
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2238 elements, expanding data 1
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 429 elements, expanding data 2
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 3
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2238 elements, expanding data 1
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 429 elements, expanding data 2
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 3
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2238 elements, expanding data 1
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 429 elements, expanding data 2
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 3
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2238 elements, expanding data 1
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 429 elements, expanding data 2
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 3
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2238 elements, expanding data 1
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 429 elements, expanding data 2
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 54 elements, expanding data 3
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3036 elements, expanding data 1
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 2
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3036 elements, expanding data 1
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 2
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3036 elements, expanding data 1
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 2
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3036 elements, expanding data 1
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 2
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3036 elements, expanding data 1
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 2
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2109 elements, expanding data 1
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2109 elements, expanding data 1
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2109 elements, expanding data 1
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2109 elements, expanding data 1
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2109 elements, expanding data 1
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
10:54:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:19 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 06:00:00, weight 0.96) and
after (2023-08-22 07:00:00, weight 0.04) in time
10:54:19 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10413727147263 and -58.95775823896381 degrees.
10:54:19 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.10413727147263 and -58.95775823896381 degrees.
10:54:19 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:19 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:19 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:19 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:19 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:19 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:19 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.969485 (min) 1.02831 (max)
10:54:19 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.909861 (min) 0.695882 (max)
10:54:19 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000493996 (min) 0.000693384 (max)
10:54:19 DEBUG opendrift.models.basemodel:1524: x_wind: -7.5594 (min) 8.26548 (max)
10:54:19 DEBUG opendrift.models.basemodel:1524: y_wind: -6.34679 (min) 7.77567 (max)
10:54:19 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:19 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:19 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:19 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:19 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:19 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:19 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:19 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4149 (max)
10:54:19 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:19 DEBUG opendrift.models.basemodel:1527: 4028 active elements
10:54:19 DEBUG opendrift.models.basemodel:1538: 59.101125183339875 <- latitude -> 59.189324106648364
10:54:19 DEBUG opendrift.models.basemodel:1543: 10.895873311978075 <- longitude -> 11.042252303996785
10:54:19 DEBUG opendrift.models.basemodel:1548: -14.749025344848633 <- z -> 0.0
10:54:19 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:19 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:19 DEBUG opendrift.models.physics_methods:940: min: 0.020001, mean: 2.249211, max: 7.245227
10:54:19 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.020001, mean: 2.249211, max: 7.245227
10:54:19 DEBUG opendrift.models.basemodel:813: 618 elements hit coastline, moving back to water
10:54:19 DEBUG opendrift.models.basemodel:836: Lifting 107 elements to seafloor.
10:54:19 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:19 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:19 DEBUG opendrift.models.physics_methods:741: Advecting 37 of 4028 elements above 0.100m with wind-sheared ocean current (0.004859 m/s - 0.086212 m/s)
10:54:19 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:19 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:19 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.06495815172918319
10:54:19 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:19 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:19 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:19 DEBUG opendrift.models.oceandrift:572: 450 elements penetrated seafloor, lifting up
10:54:19 DEBUG opendrift.models.oceandrift:590: 90 elements reached seafloor, set to bottom
10:54:19 DEBUG opendrift.models.basemodel:836: Lifting 90 elements to seafloor.
10:54:19 DEBUG opendrift.models.sedimentdrift:112: Settling 90 elements at seafloor
10:54:19 DEBUG opendrift.models.oceandrift:572: 315 elements penetrated seafloor, lifting up
10:54:19 DEBUG opendrift.models.oceandrift:590: 78 elements reached seafloor, set to bottom
10:54:19 DEBUG opendrift.models.basemodel:836: Lifting 78 elements to seafloor.
10:54:19 DEBUG opendrift.models.sedimentdrift:112: Settling 78 elements at seafloor
10:54:19 DEBUG opendrift.models.oceandrift:572: 286 elements penetrated seafloor, lifting up
10:54:19 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:54:19 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:54:19 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:54:19 DEBUG opendrift.models.oceandrift:572: 269 elements penetrated seafloor, lifting up
10:54:19 DEBUG opendrift.models.oceandrift:590: 53 elements reached seafloor, set to bottom
10:54:19 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
10:54:19 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
10:54:19 DEBUG opendrift.models.oceandrift:572: 248 elements penetrated seafloor, lifting up
10:54:19 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:54:19 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:54:19 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:54:19 DEBUG opendrift.models.oceandrift:572: 242 elements penetrated seafloor, lifting up
10:54:19 DEBUG opendrift.models.oceandrift:590: 37 elements reached seafloor, set to bottom
10:54:19 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
10:54:19 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
10:54:19 DEBUG opendrift.models.oceandrift:572: 245 elements penetrated seafloor, lifting up
10:54:19 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:54:19 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:54:19 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:54:19 DEBUG opendrift.models.oceandrift:572: 244 elements penetrated seafloor, lifting up
10:54:19 DEBUG opendrift.models.oceandrift:590: 53 elements reached seafloor, set to bottom
10:54:19 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
10:54:19 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
10:54:19 DEBUG opendrift.models.oceandrift:572: 221 elements penetrated seafloor, lifting up
10:54:19 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:54:19 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:54:19 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:54:19 DEBUG opendrift.models.oceandrift:572: 224 elements penetrated seafloor, lifting up
10:54:19 DEBUG opendrift.models.oceandrift:590: 40 elements reached seafloor, set to bottom
10:54:19 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
10:54:19 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
10:54:19 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:19 DEBUG opendrift.models.basemodel:2945: 4028 active elements (0 deactivated)
10:54:19 DEBUG opendrift.models.basemodel:1658: to be seeded: 5972, already seeded 4028
10:54:19 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:19 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:19 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:19 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:19 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:19 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:19 DEBUG opendrift.models.basemodel:1253: Data needed for 4063 elements
10:54:19 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:19 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 06:00:00 (before)
2023-08-22 07:00:00 (after)
10:54:19 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 06:00:00) in space (linearNDFast)
10:54:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:19 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:19 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:19 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:19 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:19 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:19 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5031 (max)
10:54:19 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:19 DEBUG opendrift.models.basemodel:1527: 4063 active elements
10:54:19 DEBUG opendrift.models.basemodel:1538: 59.098781640765594 <- latitude -> 59.19015969803392
10:54:19 DEBUG opendrift.models.basemodel:1543: 10.89126724976288 <- longitude -> 11.040657533985884
10:54:19 DEBUG opendrift.models.basemodel:1548: -14.739025344848633 <- z -> 0.0
10:54:19 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:19 DEBUG opendrift.models.basemodel:836: Lifting 343 elements to seafloor.
10:54:19 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:19 INFO opendrift.models.basemodel:2882: 2023-08-22 06:12:19.552469 - step 117 of 216 - 4063 active elements (0 deactivated)
10:54:19 DEBUG opendrift.models.basemodel:2888: 5937 elements scheduled.
10:54:19 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:19 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:19 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:19 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:19 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:19 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:19 DEBUG opendrift.models.basemodel:1253: Data needed for 4063 elements
10:54:19 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:19 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:19 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:19 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:19 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:19 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:19 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:19 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:19 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:19 DEBUG opendrift.models.basemodel:1253: Data needed for 4063 elements
10:54:19 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:19 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 06:00:00 (before)
2023-08-22 07:00:00 (after)
10:54:20 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:20 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:20 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:20 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:20 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:20 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:20 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x23x5) for time after (2023-08-22 07:00:00)
10:54:20 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 06:00:00) in space (linearNDFast)
10:54:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:20 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 07:00:00) in space (linearNDFast)
10:54:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2125 elements, expanding data 1
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2125 elements, expanding data 1
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2255 elements, expanding data 1
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 429 elements, expanding data 2
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 3
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2255 elements, expanding data 1
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 429 elements, expanding data 2
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 3
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2255 elements, expanding data 1
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 429 elements, expanding data 2
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 3
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2255 elements, expanding data 1
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 429 elements, expanding data 2
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 3
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2255 elements, expanding data 1
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 429 elements, expanding data 2
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 50 elements, expanding data 3
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3049 elements, expanding data 1
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 837 elements, expanding data 2
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3049 elements, expanding data 1
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 837 elements, expanding data 2
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3049 elements, expanding data 1
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 837 elements, expanding data 2
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3049 elements, expanding data 1
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 837 elements, expanding data 2
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3049 elements, expanding data 1
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 837 elements, expanding data 2
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2125 elements, expanding data 1
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2125 elements, expanding data 1
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2125 elements, expanding data 1
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2125 elements, expanding data 1
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2125 elements, expanding data 1
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 2
10:54:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:20 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 06:00:00, weight 0.79) and
after (2023-08-22 07:00:00, weight 0.21) in time
10:54:20 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.108743321954464 and -58.959353017987866 degrees.
10:54:20 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.108743321954464 and -58.959353017987866 degrees.
10:54:20 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:20 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:20 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:20 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:20 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:20 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:20 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.761808 (min) 0.985513 (max)
10:54:20 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.924787 (min) 0.761564 (max)
10:54:20 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000479701 (min) 0.000786195 (max)
10:54:20 DEBUG opendrift.models.basemodel:1524: x_wind: -6.7443 (min) 7.91571 (max)
10:54:20 DEBUG opendrift.models.basemodel:1524: y_wind: -7.41759 (min) 7.6841 (max)
10:54:20 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:20 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:20 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:20 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:20 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:20 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:20 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:20 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5031 (max)
10:54:20 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:20 DEBUG opendrift.models.basemodel:1527: 4063 active elements
10:54:20 DEBUG opendrift.models.basemodel:1538: 59.098781640765594 <- latitude -> 59.19015969803392
10:54:20 DEBUG opendrift.models.basemodel:1543: 10.89126724976288 <- longitude -> 11.040657533985884
10:54:20 DEBUG opendrift.models.basemodel:1548: -14.739025344848633 <- z -> 0.0
10:54:20 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:20 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:20 DEBUG opendrift.models.physics_methods:940: min: 0.035621, mean: 2.307911, max: 7.279899
10:54:20 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.035621, mean: 2.307911, max: 7.279899
10:54:20 DEBUG opendrift.models.basemodel:813: 597 elements hit coastline, moving back to water
10:54:20 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:54:20 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:20 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:20 DEBUG opendrift.models.physics_methods:741: Advecting 39 of 4063 elements above 0.100m with wind-sheared ocean current (0.001771 m/s - 0.102842 m/s)
10:54:20 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:20 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:20 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.06558132017500877
10:54:20 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:20 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:20 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:20 DEBUG opendrift.models.oceandrift:572: 479 elements penetrated seafloor, lifting up
10:54:20 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:54:20 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:54:20 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:54:20 DEBUG opendrift.models.oceandrift:572: 373 elements penetrated seafloor, lifting up
10:54:20 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:54:20 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:54:20 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:54:20 DEBUG opendrift.models.oceandrift:572: 317 elements penetrated seafloor, lifting up
10:54:20 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:54:20 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:54:20 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:54:20 DEBUG opendrift.models.oceandrift:572: 285 elements penetrated seafloor, lifting up
10:54:20 DEBUG opendrift.models.oceandrift:590: 60 elements reached seafloor, set to bottom
10:54:20 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
10:54:20 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
10:54:20 DEBUG opendrift.models.oceandrift:572: 281 elements penetrated seafloor, lifting up
10:54:20 DEBUG opendrift.models.oceandrift:590: 63 elements reached seafloor, set to bottom
10:54:20 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
10:54:20 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
10:54:20 DEBUG opendrift.models.oceandrift:572: 254 elements penetrated seafloor, lifting up
10:54:20 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:54:20 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:54:20 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:54:20 DEBUG opendrift.models.oceandrift:572: 226 elements penetrated seafloor, lifting up
10:54:20 DEBUG opendrift.models.oceandrift:590: 43 elements reached seafloor, set to bottom
10:54:20 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
10:54:20 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
10:54:20 DEBUG opendrift.models.oceandrift:572: 253 elements penetrated seafloor, lifting up
10:54:20 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:54:20 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:54:20 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:54:20 DEBUG opendrift.models.oceandrift:572: 228 elements penetrated seafloor, lifting up
10:54:20 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:54:20 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:54:20 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:54:20 DEBUG opendrift.models.oceandrift:572: 217 elements penetrated seafloor, lifting up
10:54:20 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:54:20 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:54:20 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:54:20 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:20 DEBUG opendrift.models.basemodel:2945: 4063 active elements (0 deactivated)
10:54:20 DEBUG opendrift.models.basemodel:1658: to be seeded: 5937, already seeded 4063
10:54:20 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:54:20 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:20 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:20 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:20 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:20 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:20 DEBUG opendrift.models.basemodel:1253: Data needed for 4097 elements
10:54:20 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:20 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 06:00:00 (before)
2023-08-22 07:00:00 (after)
10:54:20 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 06:00:00) in space (linearNDFast)
10:54:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:20 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:20 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:20 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:20 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:20 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:20 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4981 (max)
10:54:20 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:20 DEBUG opendrift.models.basemodel:1527: 4097 active elements
10:54:20 DEBUG opendrift.models.basemodel:1538: 59.09928678378314 <- latitude -> 59.189444599522176
10:54:20 DEBUG opendrift.models.basemodel:1543: 10.889122816789666 <- longitude -> 11.041731263722548
10:54:20 DEBUG opendrift.models.basemodel:1548: -14.52973388671875 <- z -> 0.0
10:54:20 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:20 DEBUG opendrift.models.basemodel:836: Lifting 358 elements to seafloor.
10:54:20 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:20 INFO opendrift.models.basemodel:2882: 2023-08-22 06:22:19.552469 - step 118 of 216 - 4097 active elements (0 deactivated)
10:54:20 DEBUG opendrift.models.basemodel:2888: 5903 elements scheduled.
10:54:20 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:20 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:20 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:20 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:20 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:20 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:20 DEBUG opendrift.models.basemodel:1253: Data needed for 4097 elements
10:54:20 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:20 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:20 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:20 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:20 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:20 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:20 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:20 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:20 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:20 DEBUG opendrift.models.basemodel:1253: Data needed for 4097 elements
10:54:20 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:20 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 06:00:00 (before)
2023-08-22 07:00:00 (after)
10:54:21 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:21 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:21 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:21 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:21 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:21 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:21 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x23x5) for time after (2023-08-22 07:00:00)
10:54:21 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 06:00:00) in space (linearNDFast)
10:54:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:21 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 07:00:00) in space (linearNDFast)
10:54:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2139 elements, expanding data 1
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2139 elements, expanding data 1
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2282 elements, expanding data 1
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 435 elements, expanding data 2
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 3
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2282 elements, expanding data 1
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 435 elements, expanding data 2
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 3
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2282 elements, expanding data 1
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 435 elements, expanding data 2
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 3
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2282 elements, expanding data 1
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 435 elements, expanding data 2
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 3
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2282 elements, expanding data 1
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 435 elements, expanding data 2
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 58 elements, expanding data 3
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3080 elements, expanding data 1
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 868 elements, expanding data 2
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3080 elements, expanding data 1
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 868 elements, expanding data 2
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3080 elements, expanding data 1
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 868 elements, expanding data 2
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3080 elements, expanding data 1
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 868 elements, expanding data 2
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3080 elements, expanding data 1
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 868 elements, expanding data 2
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2139 elements, expanding data 1
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2139 elements, expanding data 1
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2139 elements, expanding data 1
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2139 elements, expanding data 1
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2139 elements, expanding data 1
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
10:54:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:21 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 06:00:00, weight 0.63) and
after (2023-08-22 07:00:00, weight 0.37) in time
10:54:21 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11088776266356 and -58.95827927699229 degrees.
10:54:21 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11088776266356 and -58.95827927699229 degrees.
10:54:21 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:21 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:21 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:21 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:21 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:21 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:21 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.747615 (min) 0.976156 (max)
10:54:21 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.983681 (min) 0.811224 (max)
10:54:21 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.00039269 (min) 0.000796756 (max)
10:54:21 DEBUG opendrift.models.basemodel:1524: x_wind: -7.04518 (min) 8.34869 (max)
10:54:21 DEBUG opendrift.models.basemodel:1524: y_wind: -5.43473 (min) 8.13222 (max)
10:54:21 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:21 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:21 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:21 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:21 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:21 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:21 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:21 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4981 (max)
10:54:21 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:21 DEBUG opendrift.models.basemodel:1527: 4097 active elements
10:54:21 DEBUG opendrift.models.basemodel:1538: 59.09928678378314 <- latitude -> 59.189444599522176
10:54:21 DEBUG opendrift.models.basemodel:1543: 10.889122816789666 <- longitude -> 11.041731263722548
10:54:21 DEBUG opendrift.models.basemodel:1548: -14.52973388671875 <- z -> 0.0
10:54:21 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:21 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:21 DEBUG opendrift.models.physics_methods:940: min: 0.039582, mean: 2.335876, max: 7.876746
10:54:21 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.039582, mean: 2.335876, max: 7.876746
10:54:21 DEBUG opendrift.models.basemodel:813: 586 elements hit coastline, moving back to water
10:54:21 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
10:54:21 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:21 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:21 DEBUG opendrift.models.physics_methods:741: Advecting 36 of 4097 elements above 0.100m with wind-sheared ocean current (0.002945 m/s - 0.153171 m/s)
10:54:21 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:21 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:21 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.0767748749681282
10:54:21 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:21 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:21 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:21 DEBUG opendrift.models.oceandrift:572: 462 elements penetrated seafloor, lifting up
10:54:21 DEBUG opendrift.models.oceandrift:590: 92 elements reached seafloor, set to bottom
10:54:21 DEBUG opendrift.models.basemodel:836: Lifting 92 elements to seafloor.
10:54:21 DEBUG opendrift.models.sedimentdrift:112: Settling 92 elements at seafloor
10:54:21 DEBUG opendrift.models.oceandrift:572: 368 elements penetrated seafloor, lifting up
10:54:21 DEBUG opendrift.models.oceandrift:590: 64 elements reached seafloor, set to bottom
10:54:21 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
10:54:21 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
10:54:21 DEBUG opendrift.models.oceandrift:572: 311 elements penetrated seafloor, lifting up
10:54:21 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:54:21 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:54:21 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:54:21 DEBUG opendrift.models.oceandrift:572: 289 elements penetrated seafloor, lifting up
10:54:21 DEBUG opendrift.models.oceandrift:590: 68 elements reached seafloor, set to bottom
10:54:21 DEBUG opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
10:54:21 DEBUG opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
10:54:21 DEBUG opendrift.models.oceandrift:572: 274 elements penetrated seafloor, lifting up
10:54:21 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:54:21 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:54:21 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:54:21 DEBUG opendrift.models.oceandrift:572: 282 elements penetrated seafloor, lifting up
10:54:21 DEBUG opendrift.models.oceandrift:590: 40 elements reached seafloor, set to bottom
10:54:21 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
10:54:21 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
10:54:21 DEBUG opendrift.models.oceandrift:572: 249 elements penetrated seafloor, lifting up
10:54:21 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:54:21 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:54:21 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:54:21 DEBUG opendrift.models.oceandrift:572: 235 elements penetrated seafloor, lifting up
10:54:21 DEBUG opendrift.models.oceandrift:590: 29 elements reached seafloor, set to bottom
10:54:21 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
10:54:21 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
10:54:21 DEBUG opendrift.models.oceandrift:572: 239 elements penetrated seafloor, lifting up
10:54:21 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:54:21 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:54:21 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:54:21 DEBUG opendrift.models.oceandrift:572: 232 elements penetrated seafloor, lifting up
10:54:21 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:54:21 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:54:21 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:54:21 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:21 DEBUG opendrift.models.basemodel:2945: 4097 active elements (0 deactivated)
10:54:21 DEBUG opendrift.models.basemodel:1658: to be seeded: 5903, already seeded 4097
10:54:21 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:21 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:21 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:21 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:21 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:21 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:21 DEBUG opendrift.models.basemodel:1253: Data needed for 4132 elements
10:54:21 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:21 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 06:00:00 (before)
2023-08-22 07:00:00 (after)
10:54:21 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 06:00:00) in space (linearNDFast)
10:54:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:21 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:21 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:21 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:21 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:21 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:21 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5126 (max)
10:54:21 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:21 DEBUG opendrift.models.basemodel:1527: 4132 active elements
10:54:21 DEBUG opendrift.models.basemodel:1538: 59.09884635813076 <- latitude -> 59.18804981883811
10:54:21 DEBUG opendrift.models.basemodel:1543: 10.88934046769984 <- longitude -> 11.041493133074852
10:54:21 DEBUG opendrift.models.basemodel:1548: -14.31328010559082 <- z -> 0.0
10:54:21 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:21 DEBUG opendrift.models.basemodel:836: Lifting 389 elements to seafloor.
10:54:21 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:21 INFO opendrift.models.basemodel:2882: 2023-08-22 06:32:19.552469 - step 119 of 216 - 4132 active elements (0 deactivated)
10:54:21 DEBUG opendrift.models.basemodel:2888: 5868 elements scheduled.
10:54:21 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:21 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:21 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:21 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:21 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:21 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:21 DEBUG opendrift.models.basemodel:1253: Data needed for 4132 elements
10:54:21 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:21 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:21 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:21 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:21 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:21 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:21 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:21 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:21 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:21 DEBUG opendrift.models.basemodel:1253: Data needed for 4132 elements
10:54:21 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:21 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 06:00:00 (before)
2023-08-22 07:00:00 (after)
10:54:22 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:22 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:22 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:22 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:22 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:22 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:22 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x5) for time after (2023-08-22 07:00:00)
10:54:22 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 06:00:00) in space (linearNDFast)
10:54:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:22 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 07:00:00) in space (linearNDFast)
10:54:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2148 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2148 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2282 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 437 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 63 elements, expanding data 3
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2282 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 437 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 63 elements, expanding data 3
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2282 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 437 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 63 elements, expanding data 3
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2282 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 437 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 63 elements, expanding data 3
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2282 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 437 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 63 elements, expanding data 3
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3088 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 879 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3088 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 879 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3088 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 879 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3088 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 879 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3088 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 879 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2148 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2148 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2148 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2148 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2148 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 3
10:54:22 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 06:00:00, weight 0.46) and
after (2023-08-22 07:00:00, weight 0.54) in time
10:54:22 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11067010046198 and -58.95851740444349 degrees.
10:54:22 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11067010046198 and -58.95851740444349 degrees.
10:54:22 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:22 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:22 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:22 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:22 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:22 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:22 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.803458 (min) 0.971559 (max)
10:54:22 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.921343 (min) 0.843229 (max)
10:54:22 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.00037361 (min) 0.000672214 (max)
10:54:22 DEBUG opendrift.models.basemodel:1524: x_wind: -5.80401 (min) 7.9428 (max)
10:54:22 DEBUG opendrift.models.basemodel:1524: y_wind: -5.73454 (min) 8.23707 (max)
10:54:22 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:22 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:22 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:22 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:22 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:22 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:22 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:22 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5126 (max)
10:54:22 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:22 DEBUG opendrift.models.basemodel:1527: 4132 active elements
10:54:22 DEBUG opendrift.models.basemodel:1538: 59.09884635813076 <- latitude -> 59.18804981883811
10:54:22 DEBUG opendrift.models.basemodel:1543: 10.88934046769984 <- longitude -> 11.041493133074852
10:54:22 DEBUG opendrift.models.basemodel:1548: -14.31328010559082 <- z -> 0.0
10:54:22 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:22 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:22 DEBUG opendrift.models.physics_methods:940: min: 0.021842, mean: 2.406717, max: 7.480575
10:54:22 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.021842, mean: 2.406717, max: 7.480575
10:54:22 DEBUG opendrift.models.basemodel:813: 590 elements hit coastline, moving back to water
10:54:22 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:54:22 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:22 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:22 DEBUG opendrift.models.physics_methods:741: Advecting 37 of 4132 elements above 0.100m with wind-sheared ocean current (0.005814 m/s - 0.125779 m/s)
10:54:22 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:22 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:22 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.06924651373703956
10:54:22 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:22 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:22 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:22 DEBUG opendrift.models.oceandrift:572: 517 elements penetrated seafloor, lifting up
10:54:22 DEBUG opendrift.models.oceandrift:590: 79 elements reached seafloor, set to bottom
10:54:22 DEBUG opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
10:54:22 DEBUG opendrift.models.sedimentdrift:112: Settling 79 elements at seafloor
10:54:22 DEBUG opendrift.models.oceandrift:572: 334 elements penetrated seafloor, lifting up
10:54:22 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:54:22 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:54:22 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:54:22 DEBUG opendrift.models.oceandrift:572: 337 elements penetrated seafloor, lifting up
10:54:22 DEBUG opendrift.models.oceandrift:590: 64 elements reached seafloor, set to bottom
10:54:22 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
10:54:22 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
10:54:22 DEBUG opendrift.models.oceandrift:572: 292 elements penetrated seafloor, lifting up
10:54:22 DEBUG opendrift.models.oceandrift:590: 64 elements reached seafloor, set to bottom
10:54:22 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
10:54:22 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
10:54:22 DEBUG opendrift.models.oceandrift:572: 260 elements penetrated seafloor, lifting up
10:54:22 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:54:22 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:54:22 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:54:22 DEBUG opendrift.models.oceandrift:572: 261 elements penetrated seafloor, lifting up
10:54:22 DEBUG opendrift.models.oceandrift:590: 37 elements reached seafloor, set to bottom
10:54:22 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
10:54:22 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
10:54:22 DEBUG opendrift.models.oceandrift:572: 274 elements penetrated seafloor, lifting up
10:54:22 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:54:22 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:54:22 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:54:22 DEBUG opendrift.models.oceandrift:572: 276 elements penetrated seafloor, lifting up
10:54:22 DEBUG opendrift.models.oceandrift:590: 39 elements reached seafloor, set to bottom
10:54:22 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
10:54:22 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
10:54:22 DEBUG opendrift.models.oceandrift:572: 229 elements penetrated seafloor, lifting up
10:54:22 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:54:22 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:54:22 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:54:22 DEBUG opendrift.models.oceandrift:572: 261 elements penetrated seafloor, lifting up
10:54:22 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:54:22 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:54:22 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:54:22 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:22 DEBUG opendrift.models.basemodel:2945: 4132 active elements (0 deactivated)
10:54:22 DEBUG opendrift.models.basemodel:1658: to be seeded: 5868, already seeded 4132
10:54:22 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:22 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:22 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:22 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:22 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:22 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:22 DEBUG opendrift.models.basemodel:1253: Data needed for 4167 elements
10:54:22 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:22 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 06:00:00 (before)
2023-08-22 07:00:00 (after)
10:54:22 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 06:00:00) in space (linearNDFast)
10:54:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:22 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:22 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:22 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:22 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:22 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:22 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4849 (max)
10:54:22 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:22 DEBUG opendrift.models.basemodel:1527: 4167 active elements
10:54:22 DEBUG opendrift.models.basemodel:1538: 59.09918804116799 <- latitude -> 59.18878496389692
10:54:22 DEBUG opendrift.models.basemodel:1543: 10.886097920763524 <- longitude -> 11.040606212669163
10:54:22 DEBUG opendrift.models.basemodel:1548: -14.723461380004883 <- z -> 0.0
10:54:22 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:22 DEBUG opendrift.models.basemodel:836: Lifting 339 elements to seafloor.
10:54:22 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:22 INFO opendrift.models.basemodel:2882: 2023-08-22 06:42:19.552469 - step 120 of 216 - 4167 active elements (0 deactivated)
10:54:22 DEBUG opendrift.models.basemodel:2888: 5833 elements scheduled.
10:54:22 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:22 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:22 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:22 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:22 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:22 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:22 DEBUG opendrift.models.basemodel:1253: Data needed for 4167 elements
10:54:22 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:22 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:22 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:22 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:22 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:22 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:22 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:22 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:22 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:22 DEBUG opendrift.models.basemodel:1253: Data needed for 4167 elements
10:54:22 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:22 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 06:00:00 (before)
2023-08-22 07:00:00 (after)
10:54:22 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:22 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:22 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:22 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:22 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:22 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:22 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x23x5) for time after (2023-08-22 07:00:00)
10:54:22 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 06:00:00) in space (linearNDFast)
10:54:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:22 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 07:00:00) in space (linearNDFast)
10:54:22 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2156 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2156 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2286 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 465 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 3
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2286 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 465 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 3
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2286 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 465 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 3
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2286 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 465 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 3
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2286 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 465 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 3
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3125 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 853 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3125 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 853 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3125 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 853 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3125 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 853 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3125 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 853 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2156 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2156 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2156 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2156 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2156 elements, expanding data 1
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 68 elements, expanding data 2
10:54:22 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:22 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 06:00:00, weight 0.29) and
after (2023-08-22 07:00:00, weight 0.71) in time
10:54:22 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11391264211305 and -58.959404338467 degrees.
10:54:22 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11391264211305 and -58.959404338467 degrees.
10:54:22 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:22 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:22 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:22 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:22 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:22 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:22 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.72931 (min) 0.890219 (max)
10:54:22 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.00759 (min) 0.91398 (max)
10:54:22 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000324789 (min) 0.00063494 (max)
10:54:22 DEBUG opendrift.models.basemodel:1524: x_wind: -6.10854 (min) 7.71808 (max)
10:54:22 DEBUG opendrift.models.basemodel:1524: y_wind: -5.34256 (min) 8.87997 (max)
10:54:22 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:22 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:22 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:22 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:22 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:22 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:22 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:22 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4849 (max)
10:54:22 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:22 DEBUG opendrift.models.basemodel:1527: 4167 active elements
10:54:22 DEBUG opendrift.models.basemodel:1538: 59.09918804116799 <- latitude -> 59.18878496389692
10:54:22 DEBUG opendrift.models.basemodel:1543: 10.886097920763524 <- longitude -> 11.040606212669163
10:54:22 DEBUG opendrift.models.basemodel:1548: -14.723461380004883 <- z -> 0.0
10:54:22 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:22 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:22 DEBUG opendrift.models.physics_methods:940: min: 0.074996, mean: 2.458628, max: 7.873373
10:54:22 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.074996, mean: 2.458628, max: 7.873373
10:54:22 DEBUG opendrift.models.basemodel:813: 595 elements hit coastline, moving back to water
10:54:22 DEBUG opendrift.models.basemodel:836: Lifting 122 elements to seafloor.
10:54:22 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:22 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:22 DEBUG opendrift.models.physics_methods:741: Advecting 38 of 4167 elements above 0.100m with wind-sheared ocean current (0.002431 m/s - 0.105024 m/s)
10:54:22 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:22 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:22 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.07670914401586532
10:54:22 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:22 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:22 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:22 DEBUG opendrift.models.oceandrift:572: 493 elements penetrated seafloor, lifting up
10:54:22 DEBUG opendrift.models.oceandrift:590: 66 elements reached seafloor, set to bottom
10:54:22 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
10:54:22 DEBUG opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
10:54:22 DEBUG opendrift.models.oceandrift:572: 343 elements penetrated seafloor, lifting up
10:54:22 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:54:22 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:54:22 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:54:22 DEBUG opendrift.models.oceandrift:572: 313 elements penetrated seafloor, lifting up
10:54:22 DEBUG opendrift.models.oceandrift:590: 53 elements reached seafloor, set to bottom
10:54:22 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
10:54:22 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
10:54:22 DEBUG opendrift.models.oceandrift:572: 291 elements penetrated seafloor, lifting up
10:54:22 DEBUG opendrift.models.oceandrift:590: 43 elements reached seafloor, set to bottom
10:54:22 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
10:54:22 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
10:54:22 DEBUG opendrift.models.oceandrift:572: 301 elements penetrated seafloor, lifting up
10:54:22 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:54:22 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:54:22 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:54:22 DEBUG opendrift.models.oceandrift:572: 291 elements penetrated seafloor, lifting up
10:54:22 DEBUG opendrift.models.oceandrift:590: 68 elements reached seafloor, set to bottom
10:54:22 DEBUG opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
10:54:22 DEBUG opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
10:54:22 DEBUG opendrift.models.oceandrift:572: 275 elements penetrated seafloor, lifting up
10:54:22 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:54:22 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:54:22 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:54:22 DEBUG opendrift.models.oceandrift:572: 244 elements penetrated seafloor, lifting up
10:54:22 DEBUG opendrift.models.oceandrift:590: 42 elements reached seafloor, set to bottom
10:54:22 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
10:54:22 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
10:54:22 DEBUG opendrift.models.oceandrift:572: 245 elements penetrated seafloor, lifting up
10:54:22 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:54:22 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:54:22 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:54:22 DEBUG opendrift.models.oceandrift:572: 236 elements penetrated seafloor, lifting up
10:54:22 DEBUG opendrift.models.oceandrift:590: 40 elements reached seafloor, set to bottom
10:54:22 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
10:54:22 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
10:54:22 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:22 DEBUG opendrift.models.basemodel:2945: 4167 active elements (0 deactivated)
10:54:22 DEBUG opendrift.models.basemodel:1658: to be seeded: 5833, already seeded 4167
10:54:22 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:54:22 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:22 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:22 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:22 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:22 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:22 DEBUG opendrift.models.basemodel:1253: Data needed for 4201 elements
10:54:23 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:23 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 06:00:00 (before)
2023-08-22 07:00:00 (after)
10:54:23 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 06:00:00) in space (linearNDFast)
10:54:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:23 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:23 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:23 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:23 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:23 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:23 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4216 (max)
10:54:23 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:23 DEBUG opendrift.models.basemodel:1527: 4201 active elements
10:54:23 DEBUG opendrift.models.basemodel:1538: 59.10011154243499 <- latitude -> 59.18955918081541
10:54:23 DEBUG opendrift.models.basemodel:1543: 10.882673363176778 <- longitude -> 11.044854481844569
10:54:23 DEBUG opendrift.models.basemodel:1548: -14.492010345458985 <- z -> 0.0
10:54:23 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:23 DEBUG opendrift.models.basemodel:836: Lifting 348 elements to seafloor.
10:54:23 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:23 INFO opendrift.models.basemodel:2882: 2023-08-22 06:52:19.552469 - step 121 of 216 - 4201 active elements (0 deactivated)
10:54:23 DEBUG opendrift.models.basemodel:2888: 5799 elements scheduled.
10:54:23 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:23 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:23 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:23 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:23 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:23 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:23 DEBUG opendrift.models.basemodel:1253: Data needed for 4201 elements
10:54:23 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:23 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:23 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:23 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:23 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:23 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:23 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:23 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:23 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:23 DEBUG opendrift.models.basemodel:1253: Data needed for 4201 elements
10:54:23 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:23 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 06:00:00 (before)
2023-08-22 07:00:00 (after)
10:54:23 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:23 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:23 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:23 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:23 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:23 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:23 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x23x5) for time after (2023-08-22 07:00:00)
10:54:23 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 06:00:00) in space (linearNDFast)
10:54:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:23 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 07:00:00) in space (linearNDFast)
10:54:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2156 elements, expanding data 1
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 2
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2156 elements, expanding data 1
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 2
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2287 elements, expanding data 1
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 463 elements, expanding data 2
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 3
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2287 elements, expanding data 1
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 463 elements, expanding data 2
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 3
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2287 elements, expanding data 1
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 463 elements, expanding data 2
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 3
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2287 elements, expanding data 1
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 463 elements, expanding data 2
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 3
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2287 elements, expanding data 1
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 463 elements, expanding data 2
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 64 elements, expanding data 3
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3135 elements, expanding data 1
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 897 elements, expanding data 2
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3135 elements, expanding data 1
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 897 elements, expanding data 2
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3135 elements, expanding data 1
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 897 elements, expanding data 2
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3135 elements, expanding data 1
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 897 elements, expanding data 2
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3135 elements, expanding data 1
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 897 elements, expanding data 2
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2156 elements, expanding data 1
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 2
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2156 elements, expanding data 1
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 2
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2156 elements, expanding data 1
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 2
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2156 elements, expanding data 1
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 2
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2156 elements, expanding data 1
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 2
10:54:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:23 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 06:00:00, weight 0.13) and
after (2023-08-22 07:00:00, weight 0.87) in time
10:54:23 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11733721085667 and -58.95515605573686 degrees.
10:54:23 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11733721085667 and -58.95515605573686 degrees.
10:54:23 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:23 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:23 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:23 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:23 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:23 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:23 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -1.0373 (min) 1.03732 (max)
10:54:23 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.03148 (min) 0.783858 (max)
10:54:23 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000310099 (min) 0.00076603 (max)
10:54:23 DEBUG opendrift.models.basemodel:1524: x_wind: -6.23944 (min) 8.90003 (max)
10:54:23 DEBUG opendrift.models.basemodel:1524: y_wind: -6.13245 (min) 9.33811 (max)
10:54:23 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:23 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:23 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:23 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:23 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:23 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:23 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:23 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4216 (max)
10:54:23 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:23 DEBUG opendrift.models.basemodel:1527: 4201 active elements
10:54:23 DEBUG opendrift.models.basemodel:1538: 59.10011154243499 <- latitude -> 59.18955918081541
10:54:23 DEBUG opendrift.models.basemodel:1543: 10.882673363176778 <- longitude -> 11.044854481844569
10:54:23 DEBUG opendrift.models.basemodel:1548: -14.492010345458985 <- z -> 0.0
10:54:23 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:23 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:23 DEBUG opendrift.models.physics_methods:940: min: 0.006506, mean: 2.583458, max: 8.459225
10:54:23 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.006506, mean: 2.583458, max: 8.459225
10:54:23 DEBUG opendrift.models.basemodel:813: 579 elements hit coastline, moving back to water
10:54:23 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:54:23 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:23 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:23 DEBUG opendrift.models.physics_methods:741: Advecting 39 of 4201 elements above 0.100m with wind-sheared ocean current (0.000014 m/s - 0.120551 m/s)
10:54:23 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:23 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:23 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.08854897813756943
10:54:23 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:23 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:23 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:23 DEBUG opendrift.models.oceandrift:572: 501 elements penetrated seafloor, lifting up
10:54:23 DEBUG opendrift.models.oceandrift:590: 77 elements reached seafloor, set to bottom
10:54:23 DEBUG opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
10:54:23 DEBUG opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
10:54:23 DEBUG opendrift.models.oceandrift:572: 393 elements penetrated seafloor, lifting up
10:54:23 DEBUG opendrift.models.oceandrift:590: 69 elements reached seafloor, set to bottom
10:54:23 DEBUG opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
10:54:23 DEBUG opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
10:54:23 DEBUG opendrift.models.oceandrift:572: 334 elements penetrated seafloor, lifting up
10:54:23 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:54:23 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:54:23 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:54:23 DEBUG opendrift.models.oceandrift:572: 309 elements penetrated seafloor, lifting up
10:54:23 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:54:23 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:54:23 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:54:23 DEBUG opendrift.models.oceandrift:572: 288 elements penetrated seafloor, lifting up
10:54:23 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:54:23 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:54:23 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:54:23 DEBUG opendrift.models.oceandrift:572: 297 elements penetrated seafloor, lifting up
10:54:23 DEBUG opendrift.models.oceandrift:590: 43 elements reached seafloor, set to bottom
10:54:23 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
10:54:23 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
10:54:23 DEBUG opendrift.models.oceandrift:572: 268 elements penetrated seafloor, lifting up
10:54:23 DEBUG opendrift.models.oceandrift:590: 36 elements reached seafloor, set to bottom
10:54:23 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
10:54:23 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
10:54:23 DEBUG opendrift.models.oceandrift:572: 277 elements penetrated seafloor, lifting up
10:54:23 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:54:23 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:54:23 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:54:23 DEBUG opendrift.models.oceandrift:572: 273 elements penetrated seafloor, lifting up
10:54:23 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:54:23 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:54:23 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:54:23 DEBUG opendrift.models.oceandrift:572: 257 elements penetrated seafloor, lifting up
10:54:23 DEBUG opendrift.models.oceandrift:590: 40 elements reached seafloor, set to bottom
10:54:23 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
10:54:23 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
10:54:23 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:23 DEBUG opendrift.models.basemodel:2945: 4201 active elements (0 deactivated)
10:54:23 DEBUG opendrift.models.basemodel:1658: to be seeded: 5799, already seeded 4201
10:54:23 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:23 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:23 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:23 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:23 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:23 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:23 DEBUG opendrift.models.basemodel:1253: Data needed for 4236 elements
10:54:23 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:23 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 07:00:00 (before)
2023-08-22 08:00:00 (after)
10:54:23 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 07:00:00) in space (linearNDFast)
10:54:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:23 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:23 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:23 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:23 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:23 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:23 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4581 (max)
10:54:23 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:23 DEBUG opendrift.models.basemodel:1527: 4236 active elements
10:54:23 DEBUG opendrift.models.basemodel:1538: 59.09899908814451 <- latitude -> 59.18895357055324
10:54:23 DEBUG opendrift.models.basemodel:1543: 10.880860576817412 <- longitude -> 11.0411694167529
10:54:23 DEBUG opendrift.models.basemodel:1548: -14.30328010559082 <- z -> 0.0
10:54:23 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:23 DEBUG opendrift.models.basemodel:836: Lifting 349 elements to seafloor.
10:54:23 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:23 INFO opendrift.models.basemodel:2882: 2023-08-22 07:02:19.552469 - step 122 of 216 - 4236 active elements (0 deactivated)
10:54:23 DEBUG opendrift.models.basemodel:2888: 5764 elements scheduled.
10:54:23 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:23 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:23 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:23 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:23 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:23 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:23 DEBUG opendrift.models.basemodel:1253: Data needed for 4236 elements
10:54:23 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:23 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:23 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:23 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:23 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:23 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:23 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:23 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:23 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:23 DEBUG opendrift.models.basemodel:1253: Data needed for 4236 elements
10:54:23 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:23 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 07:00:00 (before)
2023-08-22 08:00:00 (after)
10:54:24 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:24 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:24 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:24 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:24 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:24 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:24 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x5) for time after (2023-08-22 08:00:00)
10:54:24 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 07:00:00) in space (linearNDFast)
10:54:24 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:24 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 08:00:00) in space (linearNDFast)
10:54:24 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2165 elements, expanding data 1
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2165 elements, expanding data 1
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2306 elements, expanding data 1
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 460 elements, expanding data 2
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 3
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2306 elements, expanding data 1
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 460 elements, expanding data 2
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 3
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2306 elements, expanding data 1
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 460 elements, expanding data 2
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 3
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2306 elements, expanding data 1
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 460 elements, expanding data 2
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 3
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2306 elements, expanding data 1
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 460 elements, expanding data 2
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 3
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3151 elements, expanding data 1
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 910 elements, expanding data 2
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3151 elements, expanding data 1
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 910 elements, expanding data 2
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3151 elements, expanding data 1
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 910 elements, expanding data 2
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3151 elements, expanding data 1
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 910 elements, expanding data 2
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3151 elements, expanding data 1
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 910 elements, expanding data 2
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2165 elements, expanding data 1
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2165 elements, expanding data 1
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2165 elements, expanding data 1
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2165 elements, expanding data 1
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2165 elements, expanding data 1
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 75 elements, expanding data 2
10:54:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:24 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 07:00:00, weight 0.96) and
after (2023-08-22 08:00:00, weight 0.04) in time
10:54:25 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11914999070867 and -58.95884113095667 degrees.
10:54:25 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.11914999070867 and -58.95884113095667 degrees.
10:54:25 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:25 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:25 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:25 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:25 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:25 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:25 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.815324 (min) 1.09147 (max)
10:54:25 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.974569 (min) 0.92797 (max)
10:54:25 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000335991 (min) 0.000879194 (max)
10:54:25 DEBUG opendrift.models.basemodel:1524: x_wind: -5.9973 (min) 7.30515 (max)
10:54:25 DEBUG opendrift.models.basemodel:1524: y_wind: -4.69791 (min) 10.3391 (max)
10:54:25 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:25 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:25 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:25 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:25 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:25 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:25 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:25 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.4581 (max)
10:54:25 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:25 DEBUG opendrift.models.basemodel:1527: 4236 active elements
10:54:25 DEBUG opendrift.models.basemodel:1538: 59.09899908814451 <- latitude -> 59.18895357055324
10:54:25 DEBUG opendrift.models.basemodel:1543: 10.880860576817412 <- longitude -> 11.0411694167529
10:54:25 DEBUG opendrift.models.basemodel:1548: -14.30328010559082 <- z -> 0.0
10:54:25 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:25 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:25 DEBUG opendrift.models.physics_methods:940: min: 0.054851, mean: 2.649586, max: 9.098850
10:54:25 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.054851, mean: 2.649586, max: 9.098850
10:54:25 DEBUG opendrift.models.basemodel:813: 587 elements hit coastline, moving back to water
10:54:25 DEBUG opendrift.models.basemodel:836: Lifting 107 elements to seafloor.
10:54:25 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:25 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:25 DEBUG opendrift.models.physics_methods:741: Advecting 37 of 4236 elements above 0.100m with wind-sheared ocean current (0.005244 m/s - 0.158890 m/s)
10:54:25 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:25 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:25 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.10244546013267516
10:54:25 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:25 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:25 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:25 DEBUG opendrift.models.oceandrift:572: 497 elements penetrated seafloor, lifting up
10:54:25 DEBUG opendrift.models.oceandrift:590: 71 elements reached seafloor, set to bottom
10:54:25 DEBUG opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
10:54:25 DEBUG opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
10:54:25 DEBUG opendrift.models.oceandrift:572: 373 elements penetrated seafloor, lifting up
10:54:25 DEBUG opendrift.models.oceandrift:590: 74 elements reached seafloor, set to bottom
10:54:25 DEBUG opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
10:54:25 DEBUG opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
10:54:25 DEBUG opendrift.models.oceandrift:572: 345 elements penetrated seafloor, lifting up
10:54:25 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:54:25 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:54:25 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:54:25 DEBUG opendrift.models.oceandrift:572: 323 elements penetrated seafloor, lifting up
10:54:25 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:54:25 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:54:25 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:54:25 DEBUG opendrift.models.oceandrift:572: 316 elements penetrated seafloor, lifting up
10:54:25 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:54:25 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:54:25 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:54:25 DEBUG opendrift.models.oceandrift:572: 292 elements penetrated seafloor, lifting up
10:54:25 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:54:25 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:54:25 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:54:25 DEBUG opendrift.models.oceandrift:572: 287 elements penetrated seafloor, lifting up
10:54:25 DEBUG opendrift.models.oceandrift:590: 43 elements reached seafloor, set to bottom
10:54:25 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
10:54:25 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
10:54:25 DEBUG opendrift.models.oceandrift:572: 268 elements penetrated seafloor, lifting up
10:54:25 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:54:25 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:54:25 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:54:25 DEBUG opendrift.models.oceandrift:572: 273 elements penetrated seafloor, lifting up
10:54:25 DEBUG opendrift.models.oceandrift:590: 44 elements reached seafloor, set to bottom
10:54:25 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
10:54:25 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
10:54:25 DEBUG opendrift.models.oceandrift:572: 254 elements penetrated seafloor, lifting up
10:54:25 DEBUG opendrift.models.oceandrift:590: 41 elements reached seafloor, set to bottom
10:54:25 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
10:54:25 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
10:54:25 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:25 DEBUG opendrift.models.basemodel:2945: 4236 active elements (0 deactivated)
10:54:25 DEBUG opendrift.models.basemodel:1658: to be seeded: 5764, already seeded 4236
10:54:25 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:25 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:25 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:25 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:25 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:25 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:25 DEBUG opendrift.models.basemodel:1253: Data needed for 4271 elements
10:54:25 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:25 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 07:00:00 (before)
2023-08-22 08:00:00 (after)
10:54:25 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 07:00:00) in space (linearNDFast)
10:54:25 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:25 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:25 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:25 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:25 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:25 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:25 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5825 (max)
10:54:25 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:25 DEBUG opendrift.models.basemodel:1527: 4271 active elements
10:54:25 DEBUG opendrift.models.basemodel:1538: 59.1001665128725 <- latitude -> 59.18839486570667
10:54:25 DEBUG opendrift.models.basemodel:1543: 10.87838708196496 <- longitude -> 11.041563364331871
10:54:25 DEBUG opendrift.models.basemodel:1548: -14.554027786254883 <- z -> 0.0
10:54:25 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:25 DEBUG opendrift.models.basemodel:836: Lifting 334 elements to seafloor.
10:54:25 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:25 INFO opendrift.models.basemodel:2882: 2023-08-22 07:12:19.552469 - step 123 of 216 - 4271 active elements (0 deactivated)
10:54:25 DEBUG opendrift.models.basemodel:2888: 5729 elements scheduled.
10:54:25 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:25 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:25 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:25 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:25 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:25 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:25 DEBUG opendrift.models.basemodel:1253: Data needed for 4271 elements
10:54:25 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:25 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:25 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:25 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:25 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:25 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:25 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:25 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:25 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:25 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:25 DEBUG opendrift.models.basemodel:1253: Data needed for 4271 elements
10:54:25 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:25 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 07:00:00 (before)
2023-08-22 08:00:00 (after)
10:54:25 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:25 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:25 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:25 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:25 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:25 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:25 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x5) for time after (2023-08-22 08:00:00)
10:54:25 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 07:00:00) in space (linearNDFast)
10:54:25 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:25 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 08:00:00) in space (linearNDFast)
10:54:25 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2153 elements, expanding data 1
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 2
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2153 elements, expanding data 1
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 2
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2309 elements, expanding data 1
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 455 elements, expanding data 2
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 3
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2309 elements, expanding data 1
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 455 elements, expanding data 2
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 3
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2309 elements, expanding data 1
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 455 elements, expanding data 2
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 3
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2309 elements, expanding data 1
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 455 elements, expanding data 2
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 3
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2309 elements, expanding data 1
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 455 elements, expanding data 2
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 67 elements, expanding data 3
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3171 elements, expanding data 1
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 923 elements, expanding data 2
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3171 elements, expanding data 1
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 923 elements, expanding data 2
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3171 elements, expanding data 1
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 923 elements, expanding data 2
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3171 elements, expanding data 1
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 923 elements, expanding data 2
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3171 elements, expanding data 1
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 923 elements, expanding data 2
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2153 elements, expanding data 1
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 2
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2153 elements, expanding data 1
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 2
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2153 elements, expanding data 1
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 2
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2153 elements, expanding data 1
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 2
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2153 elements, expanding data 1
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 69 elements, expanding data 2
10:54:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:25 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 07:00:00, weight 0.79) and
after (2023-08-22 08:00:00, weight 0.21) in time
10:54:25 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.12162348988858 and -58.95844717017583 degrees.
10:54:25 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.12162348988858 and -58.95844717017583 degrees.
10:54:25 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:25 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:25 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:25 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:25 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:25 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:25 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.8982 (min) 1.22793 (max)
10:54:25 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.23545 (min) 0.797841 (max)
10:54:25 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000274723 (min) 0.000870959 (max)
10:54:25 DEBUG opendrift.models.basemodel:1524: x_wind: -6.63596 (min) 8.14706 (max)
10:54:25 DEBUG opendrift.models.basemodel:1524: y_wind: -5.02636 (min) 8.74517 (max)
10:54:25 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:25 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:25 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:25 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:25 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:25 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:25 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:25 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.5825 (max)
10:54:25 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:25 DEBUG opendrift.models.basemodel:1527: 4271 active elements
10:54:25 DEBUG opendrift.models.basemodel:1538: 59.1001665128725 <- latitude -> 59.18839486570667
10:54:25 DEBUG opendrift.models.basemodel:1543: 10.87838708196496 <- longitude -> 11.041563364331871
10:54:25 DEBUG opendrift.models.basemodel:1548: -14.51870192510975 <- z -> 0.0
10:54:25 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:25 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:25 DEBUG opendrift.models.physics_methods:940: min: 0.035756, mean: 2.714417, max: 7.899675
10:54:25 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.035756, mean: 2.714417, max: 7.899675
10:54:25 DEBUG opendrift.models.basemodel:813: 541 elements hit coastline, moving back to water
10:54:25 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:54:25 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:25 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:25 DEBUG opendrift.models.physics_methods:741: Advecting 40 of 4271 elements above 0.100m with wind-sheared ocean current (0.000982 m/s - 0.135313 m/s)
10:54:25 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:25 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:25 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.07722248280246734
10:54:25 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:25 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:25 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:25 DEBUG opendrift.models.oceandrift:572: 519 elements penetrated seafloor, lifting up
10:54:25 DEBUG opendrift.models.oceandrift:590: 79 elements reached seafloor, set to bottom
10:54:25 DEBUG opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
10:54:25 DEBUG opendrift.models.sedimentdrift:112: Settling 79 elements at seafloor
10:54:25 DEBUG opendrift.models.oceandrift:572: 384 elements penetrated seafloor, lifting up
10:54:25 DEBUG opendrift.models.oceandrift:590: 63 elements reached seafloor, set to bottom
10:54:25 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
10:54:25 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
10:54:25 DEBUG opendrift.models.oceandrift:572: 358 elements penetrated seafloor, lifting up
10:54:25 DEBUG opendrift.models.oceandrift:590: 71 elements reached seafloor, set to bottom
10:54:25 DEBUG opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
10:54:25 DEBUG opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
10:54:25 DEBUG opendrift.models.oceandrift:572: 321 elements penetrated seafloor, lifting up
10:54:25 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:54:25 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:54:25 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:54:25 DEBUG opendrift.models.oceandrift:572: 312 elements penetrated seafloor, lifting up
10:54:25 DEBUG opendrift.models.oceandrift:590: 42 elements reached seafloor, set to bottom
10:54:25 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
10:54:25 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
10:54:25 DEBUG opendrift.models.oceandrift:572: 287 elements penetrated seafloor, lifting up
10:54:25 DEBUG opendrift.models.oceandrift:590: 63 elements reached seafloor, set to bottom
10:54:25 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
10:54:25 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
10:54:25 DEBUG opendrift.models.oceandrift:572: 281 elements penetrated seafloor, lifting up
10:54:25 DEBUG opendrift.models.oceandrift:590: 35 elements reached seafloor, set to bottom
10:54:25 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
10:54:25 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
10:54:25 DEBUG opendrift.models.oceandrift:572: 285 elements penetrated seafloor, lifting up
10:54:25 DEBUG opendrift.models.oceandrift:590: 64 elements reached seafloor, set to bottom
10:54:25 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
10:54:25 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
10:54:25 DEBUG opendrift.models.oceandrift:572: 272 elements penetrated seafloor, lifting up
10:54:25 DEBUG opendrift.models.oceandrift:590: 34 elements reached seafloor, set to bottom
10:54:25 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
10:54:25 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
10:54:25 DEBUG opendrift.models.oceandrift:572: 267 elements penetrated seafloor, lifting up
10:54:25 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:54:25 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:54:25 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:54:25 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:25 DEBUG opendrift.models.basemodel:2945: 4271 active elements (0 deactivated)
10:54:25 DEBUG opendrift.models.basemodel:1658: to be seeded: 5729, already seeded 4271
10:54:25 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:25 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:25 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:25 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:25 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:25 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:25 DEBUG opendrift.models.basemodel:1253: Data needed for 4306 elements
10:54:25 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:25 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 07:00:00 (before)
2023-08-22 08:00:00 (after)
10:54:25 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 07:00:00) in space (linearNDFast)
10:54:25 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:25 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:25 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:25 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:25 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:25 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:25 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 16.1088 (max)
10:54:25 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:25 DEBUG opendrift.models.basemodel:1527: 4306 active elements
10:54:25 DEBUG opendrift.models.basemodel:1538: 59.100002379428744 <- latitude -> 59.18938031731372
10:54:25 DEBUG opendrift.models.basemodel:1543: 10.876024216505908 <- longitude -> 11.043377607747079
10:54:25 DEBUG opendrift.models.basemodel:1548: -14.59181272778256 <- z -> 0.0
10:54:25 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:25 DEBUG opendrift.models.basemodel:836: Lifting 349 elements to seafloor.
10:54:25 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:25 INFO opendrift.models.basemodel:2882: 2023-08-22 07:22:19.552469 - step 124 of 216 - 4306 active elements (0 deactivated)
10:54:25 DEBUG opendrift.models.basemodel:2888: 5694 elements scheduled.
10:54:25 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:25 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:25 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:25 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:25 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:25 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:25 DEBUG opendrift.models.basemodel:1253: Data needed for 4306 elements
10:54:25 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:25 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:25 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:25 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:25 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:25 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:25 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:25 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:25 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:25 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:25 DEBUG opendrift.models.basemodel:1253: Data needed for 4306 elements
10:54:25 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:25 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 07:00:00 (before)
2023-08-22 08:00:00 (after)
10:54:26 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:26 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:26 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:26 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:26 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:26 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:26 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x5) for time after (2023-08-22 08:00:00)
10:54:26 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 07:00:00) in space (linearNDFast)
10:54:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:26 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 08:00:00) in space (linearNDFast)
10:54:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2173 elements, expanding data 1
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2173 elements, expanding data 1
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2333 elements, expanding data 1
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 453 elements, expanding data 2
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 3
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2333 elements, expanding data 1
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 453 elements, expanding data 2
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 3
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2333 elements, expanding data 1
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 453 elements, expanding data 2
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 3
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2333 elements, expanding data 1
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 453 elements, expanding data 2
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 3
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2333 elements, expanding data 1
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 453 elements, expanding data 2
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 3
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3192 elements, expanding data 1
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 2
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3192 elements, expanding data 1
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 2
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3192 elements, expanding data 1
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 2
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3192 elements, expanding data 1
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 2
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3192 elements, expanding data 1
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 924 elements, expanding data 2
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2173 elements, expanding data 1
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2173 elements, expanding data 1
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2173 elements, expanding data 1
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2173 elements, expanding data 1
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2173 elements, expanding data 1
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 62 elements, expanding data 2
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:26 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 07:00:00, weight 0.63) and
after (2023-08-22 08:00:00, weight 0.37) in time
10:54:26 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.12398635220173 and -58.95663294029229 degrees.
10:54:26 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.12398635220173 and -58.95663294029229 degrees.
10:54:26 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:26 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:26 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:26 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:26 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:26 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:26 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.854251 (min) 0.984341 (max)
10:54:26 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.921806 (min) 0.784488 (max)
10:54:26 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000449037 (min) 0.000897834 (max)
10:54:26 DEBUG opendrift.models.basemodel:1524: x_wind: -5.6492 (min) 8.3986 (max)
10:54:26 DEBUG opendrift.models.basemodel:1524: y_wind: -4.84126 (min) 9.2913 (max)
10:54:26 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:26 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:26 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:26 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:26 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:26 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:26 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:26 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 16.1088 (max)
10:54:26 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:26 DEBUG opendrift.models.basemodel:1527: 4306 active elements
10:54:26 DEBUG opendrift.models.basemodel:1538: 59.100002379428744 <- latitude -> 59.18938031731372
10:54:26 DEBUG opendrift.models.basemodel:1543: 10.876024216505908 <- longitude -> 11.043377607747079
10:54:26 DEBUG opendrift.models.basemodel:1548: -14.59181272778256 <- z -> 0.0
10:54:26 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:26 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:26 DEBUG opendrift.models.physics_methods:940: min: 0.060492, mean: 2.782083, max: 9.483314
10:54:26 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.060492, mean: 2.782083, max: 9.483314
10:54:26 DEBUG opendrift.models.basemodel:813: 579 elements hit coastline, moving back to water
10:54:26 DEBUG opendrift.models.basemodel:836: Lifting 25 elements to seafloor.
10:54:26 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:26 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:26 DEBUG opendrift.models.physics_methods:741: Advecting 35 of 4306 elements above 0.100m with wind-sheared ocean current (0.009432 m/s - 0.100698 m/s)
10:54:26 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:26 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:26 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.11128549637563705
10:54:26 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:26 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:26 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:26 DEBUG opendrift.models.oceandrift:572: 488 elements penetrated seafloor, lifting up
10:54:26 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:54:26 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:54:26 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:54:26 DEBUG opendrift.models.oceandrift:572: 409 elements penetrated seafloor, lifting up
10:54:26 DEBUG opendrift.models.oceandrift:590: 67 elements reached seafloor, set to bottom
10:54:26 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
10:54:26 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
10:54:26 DEBUG opendrift.models.oceandrift:572: 347 elements penetrated seafloor, lifting up
10:54:26 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:54:26 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:54:26 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:54:26 DEBUG opendrift.models.oceandrift:572: 333 elements penetrated seafloor, lifting up
10:54:26 DEBUG opendrift.models.oceandrift:590: 63 elements reached seafloor, set to bottom
10:54:26 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
10:54:26 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
10:54:26 DEBUG opendrift.models.oceandrift:572: 323 elements penetrated seafloor, lifting up
10:54:26 DEBUG opendrift.models.oceandrift:590: 63 elements reached seafloor, set to bottom
10:54:26 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
10:54:26 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
10:54:26 DEBUG opendrift.models.oceandrift:572: 304 elements penetrated seafloor, lifting up
10:54:26 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:54:26 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:54:26 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:54:26 DEBUG opendrift.models.oceandrift:572: 271 elements penetrated seafloor, lifting up
10:54:26 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:54:26 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:54:26 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:54:26 DEBUG opendrift.models.oceandrift:572: 304 elements penetrated seafloor, lifting up
10:54:26 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:54:26 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:54:26 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:54:26 DEBUG opendrift.models.oceandrift:572: 248 elements penetrated seafloor, lifting up
10:54:26 DEBUG opendrift.models.oceandrift:590: 41 elements reached seafloor, set to bottom
10:54:26 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
10:54:26 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
10:54:26 DEBUG opendrift.models.oceandrift:572: 279 elements penetrated seafloor, lifting up
10:54:26 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:54:26 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:54:26 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:54:26 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:26 DEBUG opendrift.models.basemodel:2945: 4306 active elements (0 deactivated)
10:54:26 DEBUG opendrift.models.basemodel:1658: to be seeded: 5694, already seeded 4306
10:54:26 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:54:26 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:26 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:26 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:26 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:26 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:26 DEBUG opendrift.models.basemodel:1253: Data needed for 4340 elements
10:54:26 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:26 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 07:00:00 (before)
2023-08-22 08:00:00 (after)
10:54:26 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 07:00:00) in space (linearNDFast)
10:54:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:26 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:26 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:26 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:26 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:26 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:26 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 16.4612 (max)
10:54:26 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:26 DEBUG opendrift.models.basemodel:1527: 4340 active elements
10:54:26 DEBUG opendrift.models.basemodel:1538: 59.09892009855413 <- latitude -> 59.1881748238229
10:54:26 DEBUG opendrift.models.basemodel:1543: 10.874772550566124 <- longitude -> 11.039787165610846
10:54:26 DEBUG opendrift.models.basemodel:1548: -15.467527628679505 <- z -> 0.0
10:54:26 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:26 DEBUG opendrift.models.basemodel:836: Lifting 333 elements to seafloor.
10:54:26 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:26 INFO opendrift.models.basemodel:2882: 2023-08-22 07:32:19.552469 - step 125 of 216 - 4340 active elements (0 deactivated)
10:54:26 DEBUG opendrift.models.basemodel:2888: 5660 elements scheduled.
10:54:26 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:26 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:26 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:26 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:26 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:26 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:26 DEBUG opendrift.models.basemodel:1253: Data needed for 4340 elements
10:54:26 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:26 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:26 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:26 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:26 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:26 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:26 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:26 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:26 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:26 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:26 DEBUG opendrift.models.basemodel:1253: Data needed for 4340 elements
10:54:26 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:26 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 07:00:00 (before)
2023-08-22 08:00:00 (after)
10:54:27 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:27 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:27 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:27 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:27 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:27 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:27 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x6) for time after (2023-08-22 08:00:00)
10:54:27 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 07:00:00) in space (linearNDFast)
10:54:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:27 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 08:00:00) in space (linearNDFast)
10:54:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2186 elements, expanding data 1
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2186 elements, expanding data 1
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2350 elements, expanding data 1
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 470 elements, expanding data 2
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 3
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2350 elements, expanding data 1
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 470 elements, expanding data 2
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 3
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2350 elements, expanding data 1
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 470 elements, expanding data 2
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 3
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2350 elements, expanding data 1
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 470 elements, expanding data 2
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 3
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2350 elements, expanding data 1
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 470 elements, expanding data 2
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 3
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2350 elements, expanding data 1
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 470 elements, expanding data 2
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 66 elements, expanding data 3
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3213 elements, expanding data 1
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 960 elements, expanding data 2
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3213 elements, expanding data 1
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 960 elements, expanding data 2
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3213 elements, expanding data 1
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 960 elements, expanding data 2
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3213 elements, expanding data 1
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 960 elements, expanding data 2
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3213 elements, expanding data 1
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 960 elements, expanding data 2
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3213 elements, expanding data 1
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 960 elements, expanding data 2
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2186 elements, expanding data 1
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2186 elements, expanding data 1
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2186 elements, expanding data 1
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2186 elements, expanding data 1
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2186 elements, expanding data 1
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2186 elements, expanding data 1
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
10:54:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:27 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 07:00:00, weight 0.46) and
after (2023-08-22 08:00:00, weight 0.54) in time
10:54:27 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.1252380266433 and -58.96022338905395 degrees.
10:54:27 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.1252380266433 and -58.96022338905395 degrees.
10:54:27 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:27 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:27 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:27 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:27 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:27 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:27 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.790334 (min) 1.27894 (max)
10:54:27 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.04381 (min) 0.843218 (max)
10:54:27 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000480242 (min) 0.000828022 (max)
10:54:27 DEBUG opendrift.models.basemodel:1524: x_wind: -7.13028 (min) 8.65277 (max)
10:54:27 DEBUG opendrift.models.basemodel:1524: y_wind: -4.01365 (min) 9.58959 (max)
10:54:27 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:27 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:27 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:27 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:27 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:27 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:27 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:27 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 16.4612 (max)
10:54:27 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:27 DEBUG opendrift.models.basemodel:1527: 4340 active elements
10:54:27 DEBUG opendrift.models.basemodel:1538: 59.09892009855413 <- latitude -> 59.1881748238229
10:54:27 DEBUG opendrift.models.basemodel:1543: 10.874772550566124 <- longitude -> 11.039787165610846
10:54:27 DEBUG opendrift.models.basemodel:1548: -15.467527628679505 <- z -> 0.0
10:54:27 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:27 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:27 DEBUG opendrift.models.physics_methods:940: min: 0.010132, mean: 2.779058, max: 8.751579
10:54:27 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.010132, mean: 2.779058, max: 8.751579
10:54:27 DEBUG opendrift.models.basemodel:813: 570 elements hit coastline, moving back to water
10:54:27 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:54:27 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:27 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:27 DEBUG opendrift.models.physics_methods:741: Advecting 38 of 4340 elements above 0.100m with wind-sheared ocean current (0.001560 m/s - 0.112316 m/s)
10:54:27 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:27 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:27 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.09477503935964583
10:54:27 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:27 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:27 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:27 DEBUG opendrift.models.oceandrift:572: 503 elements penetrated seafloor, lifting up
10:54:27 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:54:27 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:54:27 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:54:27 DEBUG opendrift.models.oceandrift:572: 358 elements penetrated seafloor, lifting up
10:54:27 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:54:27 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:54:27 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:54:27 DEBUG opendrift.models.oceandrift:572: 347 elements penetrated seafloor, lifting up
10:54:27 DEBUG opendrift.models.oceandrift:590: 64 elements reached seafloor, set to bottom
10:54:27 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
10:54:27 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
10:54:27 DEBUG opendrift.models.oceandrift:572: 308 elements penetrated seafloor, lifting up
10:54:27 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:54:27 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:54:27 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:54:27 DEBUG opendrift.models.oceandrift:572: 300 elements penetrated seafloor, lifting up
10:54:27 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:54:27 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:54:27 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:54:27 DEBUG opendrift.models.oceandrift:572: 297 elements penetrated seafloor, lifting up
10:54:27 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:54:27 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:54:27 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:54:27 DEBUG opendrift.models.oceandrift:572: 287 elements penetrated seafloor, lifting up
10:54:27 DEBUG opendrift.models.oceandrift:590: 30 elements reached seafloor, set to bottom
10:54:27 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
10:54:27 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
10:54:27 DEBUG opendrift.models.oceandrift:572: 255 elements penetrated seafloor, lifting up
10:54:27 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:54:27 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:54:27 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:54:27 DEBUG opendrift.models.oceandrift:572: 259 elements penetrated seafloor, lifting up
10:54:27 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:54:27 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:54:27 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:54:27 DEBUG opendrift.models.oceandrift:572: 303 elements penetrated seafloor, lifting up
10:54:27 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:54:27 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:54:27 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:54:27 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:27 DEBUG opendrift.models.basemodel:2945: 4340 active elements (0 deactivated)
10:54:27 DEBUG opendrift.models.basemodel:1658: to be seeded: 5660, already seeded 4340
10:54:27 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:27 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:27 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:27 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:27 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:27 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:27 DEBUG opendrift.models.basemodel:1253: Data needed for 4375 elements
10:54:27 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:27 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 07:00:00 (before)
2023-08-22 08:00:00 (after)
10:54:27 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 07:00:00) in space (linearNDFast)
10:54:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:27 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:27 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:27 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:27 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:27 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:27 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.8167 (max)
10:54:27 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:27 DEBUG opendrift.models.basemodel:1527: 4375 active elements
10:54:27 DEBUG opendrift.models.basemodel:1538: 59.10107866221651 <- latitude -> 59.190206308840715
10:54:27 DEBUG opendrift.models.basemodel:1543: 10.877078779607638 <- longitude -> 11.042369501640161
10:54:27 DEBUG opendrift.models.basemodel:1548: -16.45115493774414 <- z -> 0.0
10:54:27 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:27 DEBUG opendrift.models.basemodel:836: Lifting 340 elements to seafloor.
10:54:27 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:27 INFO opendrift.models.basemodel:2882: 2023-08-22 07:42:19.552469 - step 126 of 216 - 4375 active elements (0 deactivated)
10:54:27 DEBUG opendrift.models.basemodel:2888: 5625 elements scheduled.
10:54:27 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:27 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:27 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:27 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:27 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:27 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:27 DEBUG opendrift.models.basemodel:1253: Data needed for 4375 elements
10:54:27 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:27 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:27 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:27 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:27 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:27 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:27 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:27 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:27 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:27 DEBUG opendrift.models.basemodel:1253: Data needed for 4375 elements
10:54:27 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:27 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 07:00:00 (before)
2023-08-22 08:00:00 (after)
10:54:28 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:28 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:28 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:28 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:28 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:28 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:28 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x24x6) for time after (2023-08-22 08:00:00)
10:54:28 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 07:00:00) in space (linearNDFast)
10:54:28 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:28 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 08:00:00) in space (linearNDFast)
10:54:28 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2183 elements, expanding data 1
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2183 elements, expanding data 1
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2338 elements, expanding data 1
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 473 elements, expanding data 2
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 3
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2338 elements, expanding data 1
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 473 elements, expanding data 2
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 3
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2338 elements, expanding data 1
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 473 elements, expanding data 2
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 3
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2338 elements, expanding data 1
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 473 elements, expanding data 2
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 3
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2338 elements, expanding data 1
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 473 elements, expanding data 2
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 3
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2338 elements, expanding data 1
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 473 elements, expanding data 2
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 70 elements, expanding data 3
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3244 elements, expanding data 1
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 949 elements, expanding data 2
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3244 elements, expanding data 1
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 949 elements, expanding data 2
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3244 elements, expanding data 1
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 949 elements, expanding data 2
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3244 elements, expanding data 1
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 949 elements, expanding data 2
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3244 elements, expanding data 1
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 949 elements, expanding data 2
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3244 elements, expanding data 1
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 949 elements, expanding data 2
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2183 elements, expanding data 1
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2183 elements, expanding data 1
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2183 elements, expanding data 1
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2183 elements, expanding data 1
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2183 elements, expanding data 1
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2183 elements, expanding data 1
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 2
10:54:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:28 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 07:00:00, weight 0.29) and
after (2023-08-22 08:00:00, weight 0.71) in time
10:54:28 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.12293178911767 and -58.957641054445304 degrees.
10:54:28 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.12293178911767 and -58.957641054445304 degrees.
10:54:28 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:28 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:28 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:28 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:28 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:28 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:28 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.765366 (min) 1.0462 (max)
10:54:28 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.896254 (min) 0.793316 (max)
10:54:28 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000476198 (min) 0.00085326 (max)
10:54:28 DEBUG opendrift.models.basemodel:1524: x_wind: -6.30082 (min) 8.01096 (max)
10:54:28 DEBUG opendrift.models.basemodel:1524: y_wind: -5.30273 (min) 8.80189 (max)
10:54:28 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:28 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:28 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:28 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:28 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:28 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:28 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:28 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 15.8167 (max)
10:54:28 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:28 DEBUG opendrift.models.basemodel:1527: 4375 active elements
10:54:28 DEBUG opendrift.models.basemodel:1538: 59.10107866221651 <- latitude -> 59.190206308840715
10:54:28 DEBUG opendrift.models.basemodel:1543: 10.877078779607638 <- longitude -> 11.042369501640161
10:54:28 DEBUG opendrift.models.basemodel:1548: -15.816722869873047 <- z -> 0.0
10:54:28 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:28 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:28 DEBUG opendrift.models.physics_methods:940: min: 0.061278, mean: 2.901247, max: 8.883931
10:54:28 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.061278, mean: 2.901247, max: 8.883931
10:54:28 DEBUG opendrift.models.basemodel:813: 583 elements hit coastline, moving back to water
10:54:28 DEBUG opendrift.models.basemodel:836: Lifting 122 elements to seafloor.
10:54:28 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:28 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:28 DEBUG opendrift.models.physics_methods:741: Advecting 40 of 4375 elements above 0.100m with wind-sheared ocean current (0.001240 m/s - 0.137549 m/s)
10:54:28 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:28 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:28 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.09766316700656891
10:54:28 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:28 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:28 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:28 DEBUG opendrift.models.oceandrift:572: 539 elements penetrated seafloor, lifting up
10:54:28 DEBUG opendrift.models.oceandrift:590: 73 elements reached seafloor, set to bottom
10:54:28 DEBUG opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
10:54:28 DEBUG opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
10:54:28 DEBUG opendrift.models.oceandrift:572: 373 elements penetrated seafloor, lifting up
10:54:28 DEBUG opendrift.models.oceandrift:590: 60 elements reached seafloor, set to bottom
10:54:28 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
10:54:28 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
10:54:28 DEBUG opendrift.models.oceandrift:572: 382 elements penetrated seafloor, lifting up
10:54:28 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:54:28 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:54:28 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:54:28 DEBUG opendrift.models.oceandrift:572: 343 elements penetrated seafloor, lifting up
10:54:28 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:54:28 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:54:28 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:54:28 DEBUG opendrift.models.oceandrift:572: 357 elements penetrated seafloor, lifting up
10:54:28 DEBUG opendrift.models.oceandrift:590: 41 elements reached seafloor, set to bottom
10:54:28 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
10:54:28 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
10:54:28 DEBUG opendrift.models.oceandrift:572: 312 elements penetrated seafloor, lifting up
10:54:28 DEBUG opendrift.models.oceandrift:590: 43 elements reached seafloor, set to bottom
10:54:28 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
10:54:28 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
10:54:28 DEBUG opendrift.models.oceandrift:572: 330 elements penetrated seafloor, lifting up
10:54:28 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:54:28 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:54:28 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:54:28 DEBUG opendrift.models.oceandrift:572: 318 elements penetrated seafloor, lifting up
10:54:28 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:54:28 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:54:28 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:54:28 DEBUG opendrift.models.oceandrift:572: 293 elements penetrated seafloor, lifting up
10:54:28 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:54:28 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:54:28 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:54:28 DEBUG opendrift.models.oceandrift:572: 299 elements penetrated seafloor, lifting up
10:54:28 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:54:28 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:54:28 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:54:28 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:28 DEBUG opendrift.models.basemodel:2945: 4375 active elements (0 deactivated)
10:54:28 DEBUG opendrift.models.basemodel:1658: to be seeded: 5625, already seeded 4375
10:54:28 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:28 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:28 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:28 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:28 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:28 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:28 DEBUG opendrift.models.basemodel:1253: Data needed for 4410 elements
10:54:28 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:28 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 07:00:00 (before)
2023-08-22 08:00:00 (after)
10:54:28 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 07:00:00) in space (linearNDFast)
10:54:28 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:28 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:28 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:28 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:28 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:28 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:28 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 16.231 (max)
10:54:28 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:28 DEBUG opendrift.models.basemodel:1527: 4410 active elements
10:54:28 DEBUG opendrift.models.basemodel:1538: 59.10094692778112 <- latitude -> 59.18935937812386
10:54:28 DEBUG opendrift.models.basemodel:1543: 10.875559410612846 <- longitude -> 11.042771382275903
10:54:28 DEBUG opendrift.models.basemodel:1548: -15.182373650355835 <- z -> 0.0
10:54:28 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:28 DEBUG opendrift.models.basemodel:836: Lifting 354 elements to seafloor.
10:54:28 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:28 INFO opendrift.models.basemodel:2882: 2023-08-22 07:52:19.552469 - step 127 of 216 - 4410 active elements (0 deactivated)
10:54:28 DEBUG opendrift.models.basemodel:2888: 5590 elements scheduled.
10:54:28 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:28 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:28 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:28 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:28 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:28 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:28 DEBUG opendrift.models.basemodel:1253: Data needed for 4410 elements
10:54:28 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:28 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:28 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:28 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:28 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:28 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:28 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:28 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:28 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:28 DEBUG opendrift.models.basemodel:1253: Data needed for 4410 elements
10:54:28 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:28 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 07:00:00 (before)
2023-08-22 08:00:00 (after)
10:54:29 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:29 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:29 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:29 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:29 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:29 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:29 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x6) for time after (2023-08-22 08:00:00)
10:54:29 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 07:00:00) in space (linearNDFast)
10:54:29 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:29 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 08:00:00) in space (linearNDFast)
10:54:29 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2186 elements, expanding data 1
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 2
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2186 elements, expanding data 1
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 2
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2349 elements, expanding data 1
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 472 elements, expanding data 2
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 3
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2349 elements, expanding data 1
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 472 elements, expanding data 2
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 3
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2349 elements, expanding data 1
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 472 elements, expanding data 2
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 3
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2349 elements, expanding data 1
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 472 elements, expanding data 2
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 3
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2349 elements, expanding data 1
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 472 elements, expanding data 2
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 3
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2349 elements, expanding data 1
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 472 elements, expanding data 2
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 3
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3285 elements, expanding data 1
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 963 elements, expanding data 2
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3285 elements, expanding data 1
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 963 elements, expanding data 2
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3285 elements, expanding data 1
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 963 elements, expanding data 2
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3285 elements, expanding data 1
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 963 elements, expanding data 2
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3285 elements, expanding data 1
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 963 elements, expanding data 2
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3285 elements, expanding data 1
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 963 elements, expanding data 2
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2186 elements, expanding data 1
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 2
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2186 elements, expanding data 1
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 2
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2186 elements, expanding data 1
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 2
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2186 elements, expanding data 1
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 2
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2186 elements, expanding data 1
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 2
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2186 elements, expanding data 1
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 77 elements, expanding data 2
10:54:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:29 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 07:00:00, weight 0.13) and
after (2023-08-22 08:00:00, weight 0.87) in time
10:54:29 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.124451168381746 and -58.95723917257043 degrees.
10:54:29 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.124451168381746 and -58.95723917257043 degrees.
10:54:29 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:29 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:29 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:29 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:29 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:29 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:29 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.757869 (min) 1.15922 (max)
10:54:29 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.03211 (min) 0.822988 (max)
10:54:29 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000512249 (min) 0.000802224 (max)
10:54:29 DEBUG opendrift.models.basemodel:1524: x_wind: -5.80699 (min) 8.83137 (max)
10:54:29 DEBUG opendrift.models.basemodel:1524: y_wind: -4.5323 (min) 8.9611 (max)
10:54:29 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:29 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:29 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:29 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:29 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:29 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:29 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:29 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 16.231 (max)
10:54:29 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:29 DEBUG opendrift.models.basemodel:1527: 4410 active elements
10:54:29 DEBUG opendrift.models.basemodel:1538: 59.10094692778112 <- latitude -> 59.18935937812386
10:54:29 DEBUG opendrift.models.basemodel:1543: 10.875559410612846 <- longitude -> 11.042771382275903
10:54:29 DEBUG opendrift.models.basemodel:1548: -15.182373650355835 <- z -> 0.0
10:54:29 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:29 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:29 DEBUG opendrift.models.physics_methods:940: min: 0.012145, mean: 2.959768, max: 8.293698
10:54:29 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.012145, mean: 2.959768, max: 8.293698
10:54:29 DEBUG opendrift.models.basemodel:813: 563 elements hit coastline, moving back to water
10:54:29 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:54:29 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:29 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:29 DEBUG opendrift.models.physics_methods:741: Advecting 36 of 4410 elements above 0.100m with wind-sheared ocean current (0.006183 m/s - 0.161548 m/s)
10:54:29 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:29 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:29 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.08511765646894455
10:54:29 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:29 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:29 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:29 DEBUG opendrift.models.oceandrift:572: 531 elements penetrated seafloor, lifting up
10:54:29 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:54:29 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:54:29 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:54:29 DEBUG opendrift.models.oceandrift:572: 420 elements penetrated seafloor, lifting up
10:54:29 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:54:29 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:54:29 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:54:29 DEBUG opendrift.models.oceandrift:572: 394 elements penetrated seafloor, lifting up
10:54:29 DEBUG opendrift.models.oceandrift:590: 53 elements reached seafloor, set to bottom
10:54:29 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
10:54:29 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
10:54:29 DEBUG opendrift.models.oceandrift:572: 380 elements penetrated seafloor, lifting up
10:54:29 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:54:29 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:54:29 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:54:29 DEBUG opendrift.models.oceandrift:572: 340 elements penetrated seafloor, lifting up
10:54:29 DEBUG opendrift.models.oceandrift:590: 60 elements reached seafloor, set to bottom
10:54:29 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
10:54:29 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
10:54:29 DEBUG opendrift.models.oceandrift:572: 321 elements penetrated seafloor, lifting up
10:54:29 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:54:29 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:54:29 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:54:29 DEBUG opendrift.models.oceandrift:572: 335 elements penetrated seafloor, lifting up
10:54:29 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:54:29 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:54:29 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:54:29 DEBUG opendrift.models.oceandrift:572: 313 elements penetrated seafloor, lifting up
10:54:29 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:54:29 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:54:29 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:54:29 DEBUG opendrift.models.oceandrift:572: 299 elements penetrated seafloor, lifting up
10:54:29 DEBUG opendrift.models.oceandrift:590: 41 elements reached seafloor, set to bottom
10:54:29 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
10:54:29 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
10:54:29 DEBUG opendrift.models.oceandrift:572: 276 elements penetrated seafloor, lifting up
10:54:29 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:54:29 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:54:29 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:54:29 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:29 DEBUG opendrift.models.basemodel:2945: 4410 active elements (0 deactivated)
10:54:29 DEBUG opendrift.models.basemodel:1658: to be seeded: 5590, already seeded 4410
10:54:29 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:29 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:29 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:29 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:29 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:29 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:29 DEBUG opendrift.models.basemodel:1253: Data needed for 4445 elements
10:54:29 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:29 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 08:00:00 (before)
2023-08-22 09:00:00 (after)
10:54:29 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 08:00:00) in space (linearNDFast)
10:54:29 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:29 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:29 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:29 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:29 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:29 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:29 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 16.3788 (max)
10:54:29 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:29 DEBUG opendrift.models.basemodel:1527: 4445 active elements
10:54:29 DEBUG opendrift.models.basemodel:1538: 59.101395597959964 <- latitude -> 59.188489645175615
10:54:29 DEBUG opendrift.models.basemodel:1543: 10.874547580148453 <- longitude -> 11.048207685118122
10:54:29 DEBUG opendrift.models.basemodel:1548: -16.220981826782225 <- z -> 0.0
10:54:29 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:29 DEBUG opendrift.models.basemodel:836: Lifting 336 elements to seafloor.
10:54:29 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:29 INFO opendrift.models.basemodel:2882: 2023-08-22 08:02:19.552469 - step 128 of 216 - 4445 active elements (0 deactivated)
10:54:29 DEBUG opendrift.models.basemodel:2888: 5555 elements scheduled.
10:54:29 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:29 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:29 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:29 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:29 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:29 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:29 DEBUG opendrift.models.basemodel:1253: Data needed for 4445 elements
10:54:29 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:29 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:29 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:29 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:29 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:29 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:29 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:29 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:29 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:29 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:29 DEBUG opendrift.models.basemodel:1253: Data needed for 4445 elements
10:54:29 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:29 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 08:00:00 (before)
2023-08-22 09:00:00 (after)
10:54:31 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:31 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:31 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:31 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:31 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:31 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:31 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x6) for time after (2023-08-22 09:00:00)
10:54:31 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 08:00:00) in space (linearNDFast)
10:54:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:31 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 09:00:00) in space (linearNDFast)
10:54:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2204 elements, expanding data 1
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 2
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2204 elements, expanding data 1
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 2
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2354 elements, expanding data 1
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 489 elements, expanding data 2
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 3
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2354 elements, expanding data 1
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 489 elements, expanding data 2
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 3
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2354 elements, expanding data 1
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 489 elements, expanding data 2
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 3
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2354 elements, expanding data 1
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 489 elements, expanding data 2
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 3
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2354 elements, expanding data 1
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 489 elements, expanding data 2
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 3
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2354 elements, expanding data 1
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 489 elements, expanding data 2
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 71 elements, expanding data 3
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3322 elements, expanding data 1
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 978 elements, expanding data 2
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3322 elements, expanding data 1
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 978 elements, expanding data 2
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3322 elements, expanding data 1
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 978 elements, expanding data 2
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3322 elements, expanding data 1
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 978 elements, expanding data 2
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3322 elements, expanding data 1
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 978 elements, expanding data 2
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3322 elements, expanding data 1
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 978 elements, expanding data 2
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2204 elements, expanding data 1
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 2
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2204 elements, expanding data 1
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 2
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2204 elements, expanding data 1
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 2
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2204 elements, expanding data 1
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 2
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2204 elements, expanding data 1
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 2
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2204 elements, expanding data 1
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 74 elements, expanding data 2
10:54:31 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:31 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 08:00:00, weight 0.96) and
after (2023-08-22 09:00:00, weight 0.04) in time
10:54:31 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.12546298717613 and -58.95180286545855 degrees.
10:54:31 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.12546298717613 and -58.95180286545855 degrees.
10:54:31 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:31 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:31 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:31 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:31 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:31 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:31 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.843314 (min) 0.921459 (max)
10:54:31 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.921608 (min) 0.819906 (max)
10:54:31 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000646505 (min) 0.000762956 (max)
10:54:31 DEBUG opendrift.models.basemodel:1524: x_wind: -6.3754 (min) 8.45794 (max)
10:54:31 DEBUG opendrift.models.basemodel:1524: y_wind: -5.15882 (min) 9.28527 (max)
10:54:31 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:31 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:31 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:31 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:31 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:31 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:31 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:31 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 16.3788 (max)
10:54:31 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:31 DEBUG opendrift.models.basemodel:1527: 4445 active elements
10:54:31 DEBUG opendrift.models.basemodel:1538: 59.101395597959964 <- latitude -> 59.188489645175615
10:54:31 DEBUG opendrift.models.basemodel:1543: 10.874547580148453 <- longitude -> 11.048207685118122
10:54:31 DEBUG opendrift.models.basemodel:1548: -16.220981826782225 <- z -> 0.0
10:54:31 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:31 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:31 DEBUG opendrift.models.physics_methods:940: min: 0.056564, mean: 3.012362, max: 9.494737
10:54:31 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.056564, mean: 3.012362, max: 9.494737
10:54:31 DEBUG opendrift.models.basemodel:813: 542 elements hit coastline, moving back to water
10:54:31 DEBUG opendrift.models.basemodel:836: Lifting 104 elements to seafloor.
10:54:31 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:31 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:31 DEBUG opendrift.models.physics_methods:741: Advecting 38 of 4445 elements above 0.100m with wind-sheared ocean current (0.014089 m/s - 0.162357 m/s)
10:54:31 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:31 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:31 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.11155373445184708
10:54:31 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:31 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:31 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:31 DEBUG opendrift.models.oceandrift:572: 491 elements penetrated seafloor, lifting up
10:54:31 DEBUG opendrift.models.oceandrift:590: 66 elements reached seafloor, set to bottom
10:54:31 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
10:54:31 DEBUG opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
10:54:31 DEBUG opendrift.models.oceandrift:572: 385 elements penetrated seafloor, lifting up
10:54:31 DEBUG opendrift.models.oceandrift:590: 70 elements reached seafloor, set to bottom
10:54:31 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
10:54:31 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
10:54:31 DEBUG opendrift.models.oceandrift:572: 385 elements penetrated seafloor, lifting up
10:54:31 DEBUG opendrift.models.oceandrift:590: 66 elements reached seafloor, set to bottom
10:54:31 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
10:54:31 DEBUG opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
10:54:31 DEBUG opendrift.models.oceandrift:572: 327 elements penetrated seafloor, lifting up
10:54:31 DEBUG opendrift.models.oceandrift:590: 62 elements reached seafloor, set to bottom
10:54:31 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
10:54:31 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
10:54:31 DEBUG opendrift.models.oceandrift:572: 307 elements penetrated seafloor, lifting up
10:54:31 DEBUG opendrift.models.oceandrift:590: 44 elements reached seafloor, set to bottom
10:54:31 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
10:54:31 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
10:54:31 DEBUG opendrift.models.oceandrift:572: 336 elements penetrated seafloor, lifting up
10:54:31 DEBUG opendrift.models.oceandrift:590: 43 elements reached seafloor, set to bottom
10:54:31 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
10:54:31 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
10:54:31 DEBUG opendrift.models.oceandrift:572: 309 elements penetrated seafloor, lifting up
10:54:31 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:54:31 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:54:31 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:54:31 DEBUG opendrift.models.oceandrift:572: 322 elements penetrated seafloor, lifting up
10:54:31 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:54:31 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:54:31 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:54:31 DEBUG opendrift.models.oceandrift:572: 291 elements penetrated seafloor, lifting up
10:54:31 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:54:31 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:54:31 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:54:31 DEBUG opendrift.models.oceandrift:572: 274 elements penetrated seafloor, lifting up
10:54:31 DEBUG opendrift.models.oceandrift:590: 42 elements reached seafloor, set to bottom
10:54:31 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
10:54:31 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
10:54:31 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:31 DEBUG opendrift.models.basemodel:2945: 4445 active elements (0 deactivated)
10:54:31 DEBUG opendrift.models.basemodel:1658: to be seeded: 5555, already seeded 4445
10:54:31 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:54:31 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:31 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:31 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:31 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:31 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:31 DEBUG opendrift.models.basemodel:1253: Data needed for 4479 elements
10:54:31 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:31 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 08:00:00 (before)
2023-08-22 09:00:00 (after)
10:54:31 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 08:00:00) in space (linearNDFast)
10:54:31 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:31 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:31 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:31 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:31 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:31 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:31 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 17.2184 (max)
10:54:31 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:31 DEBUG opendrift.models.basemodel:1527: 4479 active elements
10:54:31 DEBUG opendrift.models.basemodel:1538: 59.10268197579707 <- latitude -> 59.19071921230118
10:54:31 DEBUG opendrift.models.basemodel:1543: 10.87172883703349 <- longitude -> 11.043893100984752
10:54:31 DEBUG opendrift.models.basemodel:1548: -15.102050741654715 <- z -> 0.0
10:54:31 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:31 DEBUG opendrift.models.basemodel:836: Lifting 346 elements to seafloor.
10:54:31 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:31 INFO opendrift.models.basemodel:2882: 2023-08-22 08:12:19.552469 - step 129 of 216 - 4479 active elements (0 deactivated)
10:54:31 DEBUG opendrift.models.basemodel:2888: 5521 elements scheduled.
10:54:31 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:31 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:31 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:31 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:31 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:31 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:31 DEBUG opendrift.models.basemodel:1253: Data needed for 4479 elements
10:54:31 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:31 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:31 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:31 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:31 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:31 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:31 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:31 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:31 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:31 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:31 DEBUG opendrift.models.basemodel:1253: Data needed for 4479 elements
10:54:31 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:31 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 08:00:00 (before)
2023-08-22 09:00:00 (after)
10:54:32 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:32 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:32 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:32 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:32 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:32 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:32 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x6) for time after (2023-08-22 09:00:00)
10:54:32 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 08:00:00) in space (linearNDFast)
10:54:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:32 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 09:00:00) in space (linearNDFast)
10:54:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2212 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2212 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2375 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 494 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2375 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 494 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2375 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 494 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2375 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 494 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2375 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 494 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2375 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 494 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3325 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 997 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3325 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 997 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3325 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 997 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3325 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 997 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3325 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 997 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3325 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 997 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2212 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2212 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2212 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2212 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2212 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2212 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:32 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 08:00:00, weight 0.79) and
after (2023-08-22 09:00:00, weight 0.21) in time
10:54:32 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.12828173366838 and -58.95611744598021 degrees.
10:54:32 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.12828173366838 and -58.95611744598021 degrees.
10:54:32 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:32 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:32 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:32 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:32 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:32 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:32 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.763762 (min) 0.989866 (max)
10:54:32 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.902782 (min) 0.87661 (max)
10:54:32 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000629007 (min) 0.000783217 (max)
10:54:32 DEBUG opendrift.models.basemodel:1524: x_wind: -5.4862 (min) 9.23023 (max)
10:54:32 DEBUG opendrift.models.basemodel:1524: y_wind: -4.12265 (min) 9.07944 (max)
10:54:32 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:32 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:32 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:32 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:32 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:32 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:32 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:32 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 17.2184 (max)
10:54:32 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:32 DEBUG opendrift.models.basemodel:1527: 4479 active elements
10:54:32 DEBUG opendrift.models.basemodel:1538: 59.10268197579707 <- latitude -> 59.19071921230118
10:54:32 DEBUG opendrift.models.basemodel:1543: 10.87172883703349 <- longitude -> 11.043893100984752
10:54:32 DEBUG opendrift.models.basemodel:1548: -15.102050741654715 <- z -> 0.0
10:54:32 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:32 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:32 DEBUG opendrift.models.physics_methods:940: min: 0.037860, mean: 3.077443, max: 8.765948
10:54:32 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.037860, mean: 3.077443, max: 8.765948
10:54:32 DEBUG opendrift.models.basemodel:813: 560 elements hit coastline, moving back to water
10:54:32 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:54:32 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:32 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:32 DEBUG opendrift.models.physics_methods:741: Advecting 41 of 4479 elements above 0.100m with wind-sheared ocean current (0.001204 m/s - 0.155352 m/s)
10:54:32 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:32 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:32 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.09508647130496978
10:54:32 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:32 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:32 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:32 DEBUG opendrift.models.oceandrift:572: 512 elements penetrated seafloor, lifting up
10:54:32 DEBUG opendrift.models.oceandrift:590: 65 elements reached seafloor, set to bottom
10:54:32 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
10:54:32 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
10:54:32 DEBUG opendrift.models.oceandrift:572: 402 elements penetrated seafloor, lifting up
10:54:32 DEBUG opendrift.models.oceandrift:590: 74 elements reached seafloor, set to bottom
10:54:32 DEBUG opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
10:54:32 DEBUG opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
10:54:32 DEBUG opendrift.models.oceandrift:572: 362 elements penetrated seafloor, lifting up
10:54:32 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:54:32 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:54:32 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:54:32 DEBUG opendrift.models.oceandrift:572: 360 elements penetrated seafloor, lifting up
10:54:32 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:54:32 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:54:32 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:54:32 DEBUG opendrift.models.oceandrift:572: 352 elements penetrated seafloor, lifting up
10:54:32 DEBUG opendrift.models.oceandrift:590: 53 elements reached seafloor, set to bottom
10:54:32 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
10:54:32 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
10:54:32 DEBUG opendrift.models.oceandrift:572: 338 elements penetrated seafloor, lifting up
10:54:32 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:54:32 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:54:32 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:54:32 DEBUG opendrift.models.oceandrift:572: 320 elements penetrated seafloor, lifting up
10:54:32 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:54:32 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:54:32 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:54:32 DEBUG opendrift.models.oceandrift:572: 312 elements penetrated seafloor, lifting up
10:54:32 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:54:32 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:54:32 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:54:32 DEBUG opendrift.models.oceandrift:572: 305 elements penetrated seafloor, lifting up
10:54:32 DEBUG opendrift.models.oceandrift:590: 44 elements reached seafloor, set to bottom
10:54:32 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
10:54:32 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
10:54:32 DEBUG opendrift.models.oceandrift:572: 316 elements penetrated seafloor, lifting up
10:54:32 DEBUG opendrift.models.oceandrift:590: 43 elements reached seafloor, set to bottom
10:54:32 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
10:54:32 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
10:54:32 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:32 DEBUG opendrift.models.basemodel:2945: 4479 active elements (0 deactivated)
10:54:32 DEBUG opendrift.models.basemodel:1658: to be seeded: 5521, already seeded 4479
10:54:32 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:32 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:32 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:32 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:32 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:32 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:32 DEBUG opendrift.models.basemodel:1253: Data needed for 4514 elements
10:54:32 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:32 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 08:00:00 (before)
2023-08-22 09:00:00 (after)
10:54:32 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 08:00:00) in space (linearNDFast)
10:54:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:32 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:32 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:32 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:32 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:32 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:32 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 18.2633 (max)
10:54:32 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:32 DEBUG opendrift.models.basemodel:1527: 4514 active elements
10:54:32 DEBUG opendrift.models.basemodel:1538: 59.10272268231981 <- latitude -> 59.18880177119844
10:54:32 DEBUG opendrift.models.basemodel:1543: 10.868646428267496 <- longitude -> 11.044758475058542
10:54:32 DEBUG opendrift.models.basemodel:1548: -14.451641311645508 <- z -> 0.0
10:54:32 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:32 DEBUG opendrift.models.basemodel:836: Lifting 334 elements to seafloor.
10:54:32 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:32 INFO opendrift.models.basemodel:2882: 2023-08-22 08:22:19.552469 - step 130 of 216 - 4514 active elements (0 deactivated)
10:54:32 DEBUG opendrift.models.basemodel:2888: 5486 elements scheduled.
10:54:32 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:32 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:32 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:32 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:32 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:32 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:32 DEBUG opendrift.models.basemodel:1253: Data needed for 4514 elements
10:54:32 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:32 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:32 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:32 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:32 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:32 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:32 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:32 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:32 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:32 DEBUG opendrift.models.basemodel:1253: Data needed for 4514 elements
10:54:32 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:32 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 08:00:00 (before)
2023-08-22 09:00:00 (after)
10:54:32 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:32 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:32 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:32 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:32 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:32 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:32 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x24x5) for time after (2023-08-22 09:00:00)
10:54:32 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 08:00:00) in space (linearNDFast)
10:54:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:32 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 09:00:00) in space (linearNDFast)
10:54:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2219 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2219 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2403 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 488 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2403 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 488 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2403 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 488 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2403 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 488 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2403 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 488 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 72 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3355 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 997 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3355 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 997 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3355 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 997 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3355 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 997 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3355 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 997 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2219 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2219 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2219 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2219 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2219 elements, expanding data 1
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 78 elements, expanding data 2
10:54:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:32 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 08:00:00, weight 0.63) and
after (2023-08-22 09:00:00, weight 0.37) in time
10:54:33 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.13136413179054 and -58.955252070906425 degrees.
10:54:33 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.13136413179054 and -58.955252070906425 degrees.
10:54:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:33 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:33 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:33 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:33 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:33 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:33 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.881019 (min) 0.964584 (max)
10:54:33 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.06781 (min) 0.85903 (max)
10:54:33 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000460095 (min) 0.000872462 (max)
10:54:33 DEBUG opendrift.models.basemodel:1524: x_wind: -5.70608 (min) 8.55807 (max)
10:54:33 DEBUG opendrift.models.basemodel:1524: y_wind: -5.28313 (min) 9.68905 (max)
10:54:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:33 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:33 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:33 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:33 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 18.2633 (max)
10:54:33 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:33 DEBUG opendrift.models.basemodel:1527: 4514 active elements
10:54:33 DEBUG opendrift.models.basemodel:1538: 59.10272268231981 <- latitude -> 59.18880177119844
10:54:33 DEBUG opendrift.models.basemodel:1543: 10.868646428267496 <- longitude -> 11.044758475058542
10:54:33 DEBUG opendrift.models.basemodel:1548: -14.34246467590332 <- z -> 0.0
10:54:33 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:33 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:33 DEBUG opendrift.models.physics_methods:940: min: 0.005242, mean: 3.091917, max: 8.599009
10:54:33 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.005242, mean: 3.091917, max: 8.599009
10:54:33 DEBUG opendrift.models.basemodel:813: 577 elements hit coastline, moving back to water
10:54:33 DEBUG opendrift.models.basemodel:836: Lifting 24 elements to seafloor.
10:54:33 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:33 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:33 DEBUG opendrift.models.physics_methods:741: Advecting 41 of 4514 elements above 0.100m with wind-sheared ocean current (0.009475 m/s - 0.126524 m/s)
10:54:33 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:33 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:33 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.09149946456058501
10:54:33 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:33 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:33 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:33 DEBUG opendrift.models.oceandrift:572: 507 elements penetrated seafloor, lifting up
10:54:33 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:54:33 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:54:33 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:54:33 DEBUG opendrift.models.oceandrift:572: 385 elements penetrated seafloor, lifting up
10:54:33 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:54:33 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:54:33 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:54:33 DEBUG opendrift.models.oceandrift:572: 385 elements penetrated seafloor, lifting up
10:54:33 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:54:33 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:54:33 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:54:33 DEBUG opendrift.models.oceandrift:572: 369 elements penetrated seafloor, lifting up
10:54:33 DEBUG opendrift.models.oceandrift:590: 64 elements reached seafloor, set to bottom
10:54:33 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
10:54:33 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
10:54:33 DEBUG opendrift.models.oceandrift:572: 323 elements penetrated seafloor, lifting up
10:54:33 DEBUG opendrift.models.oceandrift:590: 63 elements reached seafloor, set to bottom
10:54:33 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
10:54:33 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
10:54:33 DEBUG opendrift.models.oceandrift:572: 316 elements penetrated seafloor, lifting up
10:54:33 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:54:33 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:54:33 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:54:33 DEBUG opendrift.models.oceandrift:572: 323 elements penetrated seafloor, lifting up
10:54:33 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:54:33 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:54:33 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:54:33 DEBUG opendrift.models.oceandrift:572: 305 elements penetrated seafloor, lifting up
10:54:33 DEBUG opendrift.models.oceandrift:590: 64 elements reached seafloor, set to bottom
10:54:33 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
10:54:33 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
10:54:33 DEBUG opendrift.models.oceandrift:572: 247 elements penetrated seafloor, lifting up
10:54:33 DEBUG opendrift.models.oceandrift:590: 34 elements reached seafloor, set to bottom
10:54:33 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
10:54:33 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
10:54:33 DEBUG opendrift.models.oceandrift:572: 286 elements penetrated seafloor, lifting up
10:54:33 DEBUG opendrift.models.oceandrift:590: 39 elements reached seafloor, set to bottom
10:54:33 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
10:54:33 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
10:54:33 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:33 DEBUG opendrift.models.basemodel:2945: 4514 active elements (0 deactivated)
10:54:33 DEBUG opendrift.models.basemodel:1658: to be seeded: 5486, already seeded 4514
10:54:33 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:33 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:33 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:33 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:33 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:33 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:33 DEBUG opendrift.models.basemodel:1253: Data needed for 4549 elements
10:54:33 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:33 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 08:00:00 (before)
2023-08-22 09:00:00 (after)
10:54:33 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 08:00:00) in space (linearNDFast)
10:54:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:33 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:33 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:33 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:33 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:33 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 18.6542 (max)
10:54:33 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:33 DEBUG opendrift.models.basemodel:1527: 4549 active elements
10:54:33 DEBUG opendrift.models.basemodel:1538: 59.10147097038356 <- latitude -> 59.1895452303363
10:54:33 DEBUG opendrift.models.basemodel:1543: 10.867350389705344 <- longitude -> 11.043442377434902
10:54:33 DEBUG opendrift.models.basemodel:1548: -14.606753793276711 <- z -> 0.0
10:54:33 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:33 DEBUG opendrift.models.basemodel:836: Lifting 345 elements to seafloor.
10:54:33 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:33 INFO opendrift.models.basemodel:2882: 2023-08-22 08:32:19.552469 - step 131 of 216 - 4549 active elements (0 deactivated)
10:54:33 DEBUG opendrift.models.basemodel:2888: 5451 elements scheduled.
10:54:33 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:33 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:33 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:33 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:33 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:33 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:33 DEBUG opendrift.models.basemodel:1253: Data needed for 4549 elements
10:54:33 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:33 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:33 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:33 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:33 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:33 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:33 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:33 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:33 DEBUG opendrift.models.basemodel:1253: Data needed for 4549 elements
10:54:33 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:33 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 08:00:00 (before)
2023-08-22 09:00:00 (after)
10:54:33 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:33 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:33 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:33 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:33 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:33 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:33 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x5) for time after (2023-08-22 09:00:00)
10:54:33 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 08:00:00) in space (linearNDFast)
10:54:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:33 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 09:00:00) in space (linearNDFast)
10:54:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2195 elements, expanding data 1
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2195 elements, expanding data 1
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2385 elements, expanding data 1
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 490 elements, expanding data 2
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 3
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2385 elements, expanding data 1
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 490 elements, expanding data 2
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 3
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2385 elements, expanding data 1
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 490 elements, expanding data 2
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 3
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2385 elements, expanding data 1
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 490 elements, expanding data 2
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 3
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2385 elements, expanding data 1
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 490 elements, expanding data 2
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 3
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3363 elements, expanding data 1
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1016 elements, expanding data 2
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3363 elements, expanding data 1
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1016 elements, expanding data 2
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3363 elements, expanding data 1
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1016 elements, expanding data 2
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3363 elements, expanding data 1
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1016 elements, expanding data 2
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3363 elements, expanding data 1
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1016 elements, expanding data 2
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2195 elements, expanding data 1
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2195 elements, expanding data 1
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2195 elements, expanding data 1
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2195 elements, expanding data 1
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2195 elements, expanding data 1
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
10:54:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:33 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 08:00:00, weight 0.46) and
after (2023-08-22 09:00:00, weight 0.54) in time
10:54:33 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.13266018617871 and -58.95656816682147 degrees.
10:54:33 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.13266018617871 and -58.95656816682147 degrees.
10:54:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:33 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:33 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:33 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:33 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:33 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:33 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.807574 (min) 1.10053 (max)
10:54:33 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.02651 (min) 0.836724 (max)
10:54:33 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000803978 (min) 0.000892142 (max)
10:54:33 DEBUG opendrift.models.basemodel:1524: x_wind: -5.8191 (min) 9.23536 (max)
10:54:33 DEBUG opendrift.models.basemodel:1524: y_wind: -5.28198 (min) 8.93974 (max)
10:54:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:33 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:33 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:33 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:33 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 18.6542 (max)
10:54:33 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:33 DEBUG opendrift.models.basemodel:1527: 4549 active elements
10:54:33 DEBUG opendrift.models.basemodel:1538: 59.10147097038356 <- latitude -> 59.1895452303363
10:54:33 DEBUG opendrift.models.basemodel:1543: 10.867350389705344 <- longitude -> 11.043442377434902
10:54:33 DEBUG opendrift.models.basemodel:1548: -14.606753793276711 <- z -> 0.0
10:54:33 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:33 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:33 DEBUG opendrift.models.physics_methods:940: min: 0.022119, mean: 3.148194, max: 9.493165
10:54:33 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.022119, mean: 3.148194, max: 9.493165
10:54:33 DEBUG opendrift.models.basemodel:813: 552 elements hit coastline, moving back to water
10:54:33 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:54:33 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:33 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:33 DEBUG opendrift.models.physics_methods:741: Advecting 38 of 4549 elements above 0.100m with wind-sheared ocean current (0.021424 m/s - 0.171632 m/s)
10:54:33 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:33 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:33 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.11151682589538574
10:54:33 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:33 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:33 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:33 DEBUG opendrift.models.oceandrift:572: 511 elements penetrated seafloor, lifting up
10:54:33 DEBUG opendrift.models.oceandrift:590: 64 elements reached seafloor, set to bottom
10:54:33 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
10:54:33 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
10:54:33 DEBUG opendrift.models.oceandrift:572: 427 elements penetrated seafloor, lifting up
10:54:33 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:54:33 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:54:33 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:54:33 DEBUG opendrift.models.oceandrift:572: 380 elements penetrated seafloor, lifting up
10:54:33 DEBUG opendrift.models.oceandrift:590: 62 elements reached seafloor, set to bottom
10:54:33 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
10:54:33 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
10:54:33 DEBUG opendrift.models.oceandrift:572: 368 elements penetrated seafloor, lifting up
10:54:33 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:54:33 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:54:33 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:54:33 DEBUG opendrift.models.oceandrift:572: 348 elements penetrated seafloor, lifting up
10:54:33 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:54:33 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:54:33 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:54:33 DEBUG opendrift.models.oceandrift:572: 326 elements penetrated seafloor, lifting up
10:54:33 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:54:33 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:54:33 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:54:33 DEBUG opendrift.models.oceandrift:572: 339 elements penetrated seafloor, lifting up
10:54:33 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:54:33 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:54:33 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:54:33 DEBUG opendrift.models.oceandrift:572: 317 elements penetrated seafloor, lifting up
10:54:33 DEBUG opendrift.models.oceandrift:590: 44 elements reached seafloor, set to bottom
10:54:33 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
10:54:33 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
10:54:33 DEBUG opendrift.models.oceandrift:572: 306 elements penetrated seafloor, lifting up
10:54:33 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:54:33 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:54:33 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:54:33 DEBUG opendrift.models.oceandrift:572: 325 elements penetrated seafloor, lifting up
10:54:33 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:54:33 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:54:33 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:54:33 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:33 DEBUG opendrift.models.basemodel:2945: 4549 active elements (0 deactivated)
10:54:33 DEBUG opendrift.models.basemodel:1658: to be seeded: 5451, already seeded 4549
10:54:33 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:54:33 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:33 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:33 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:33 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:33 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:33 DEBUG opendrift.models.basemodel:1253: Data needed for 4583 elements
10:54:33 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:33 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 08:00:00 (before)
2023-08-22 09:00:00 (after)
10:54:33 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 08:00:00) in space (linearNDFast)
10:54:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:33 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:33 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:33 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:33 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:33 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 18.9163 (max)
10:54:33 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:33 DEBUG opendrift.models.basemodel:1527: 4583 active elements
10:54:33 DEBUG opendrift.models.basemodel:1538: 59.102038284719534 <- latitude -> 59.19073507695028
10:54:33 DEBUG opendrift.models.basemodel:1543: 10.866586532292187 <- longitude -> 11.042840200532893
10:54:33 DEBUG opendrift.models.basemodel:1548: -14.504856338500977 <- z -> 0.0
10:54:33 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:33 DEBUG opendrift.models.basemodel:836: Lifting 341 elements to seafloor.
10:54:33 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:33 INFO opendrift.models.basemodel:2882: 2023-08-22 08:42:19.552469 - step 132 of 216 - 4583 active elements (0 deactivated)
10:54:33 DEBUG opendrift.models.basemodel:2888: 5417 elements scheduled.
10:54:33 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:33 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:33 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:33 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:33 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:33 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:33 DEBUG opendrift.models.basemodel:1253: Data needed for 4583 elements
10:54:33 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:34 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:34 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:34 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:34 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:34 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:34 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:34 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:34 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:34 DEBUG opendrift.models.basemodel:1253: Data needed for 4583 elements
10:54:34 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:34 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 08:00:00 (before)
2023-08-22 09:00:00 (after)
10:54:35 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:35 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:35 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:35 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:35 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:35 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:35 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x5) for time after (2023-08-22 09:00:00)
10:54:35 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 08:00:00) in space (linearNDFast)
10:54:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:35 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 09:00:00) in space (linearNDFast)
10:54:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2228 elements, expanding data 1
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 2
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2228 elements, expanding data 1
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 2
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2406 elements, expanding data 1
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 495 elements, expanding data 2
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 3
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2406 elements, expanding data 1
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 495 elements, expanding data 2
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 3
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2406 elements, expanding data 1
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 495 elements, expanding data 2
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 3
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2406 elements, expanding data 1
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 495 elements, expanding data 2
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 3
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2406 elements, expanding data 1
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 495 elements, expanding data 2
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 80 elements, expanding data 3
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3390 elements, expanding data 1
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1033 elements, expanding data 2
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3390 elements, expanding data 1
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1033 elements, expanding data 2
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3390 elements, expanding data 1
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1033 elements, expanding data 2
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3390 elements, expanding data 1
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1033 elements, expanding data 2
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3390 elements, expanding data 1
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1033 elements, expanding data 2
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2228 elements, expanding data 1
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 2
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2228 elements, expanding data 1
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 2
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2228 elements, expanding data 1
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 2
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2228 elements, expanding data 1
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 2
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2228 elements, expanding data 1
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 87 elements, expanding data 2
10:54:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:35 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 08:00:00, weight 0.29) and
after (2023-08-22 09:00:00, weight 0.71) in time
10:54:35 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.13342403117174 and -58.95717034621741 degrees.
10:54:35 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.13342403117174 and -58.95717034621741 degrees.
10:54:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:35 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:35 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:35 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:35 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:35 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:35 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.870191 (min) 1.09105 (max)
10:54:35 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.900611 (min) 0.813707 (max)
10:54:35 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000674316 (min) 0.000918462 (max)
10:54:35 DEBUG opendrift.models.basemodel:1524: x_wind: -4.89315 (min) 9.41992 (max)
10:54:35 DEBUG opendrift.models.basemodel:1524: y_wind: -4.67642 (min) 10.9818 (max)
10:54:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:35 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:35 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:35 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:35 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:35 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 18.9163 (max)
10:54:35 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:35 DEBUG opendrift.models.basemodel:1527: 4583 active elements
10:54:35 DEBUG opendrift.models.basemodel:1538: 59.102038284719534 <- latitude -> 59.19073507695028
10:54:35 DEBUG opendrift.models.basemodel:1543: 10.866586532292187 <- longitude -> 11.042840200532893
10:54:35 DEBUG opendrift.models.basemodel:1548: -14.401132583618164 <- z -> 0.0
10:54:35 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:35 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:35 DEBUG opendrift.models.physics_methods:940: min: 0.051940, mean: 3.262474, max: 10.037083
10:54:35 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.051940, mean: 3.262474, max: 10.037083
10:54:35 DEBUG opendrift.models.basemodel:813: 566 elements hit coastline, moving back to water
10:54:35 DEBUG opendrift.models.basemodel:836: Lifting 128 elements to seafloor.
10:54:35 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:35 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:35 DEBUG opendrift.models.physics_methods:741: Advecting 37 of 4583 elements above 0.100m with wind-sheared ocean current (0.011482 m/s - 0.133344 m/s)
10:54:35 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:35 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:35 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.12466130377681732
10:54:35 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:35 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:35 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:35 DEBUG opendrift.models.oceandrift:572: 585 elements penetrated seafloor, lifting up
10:54:35 DEBUG opendrift.models.oceandrift:590: 67 elements reached seafloor, set to bottom
10:54:35 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
10:54:35 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
10:54:35 DEBUG opendrift.models.oceandrift:572: 468 elements penetrated seafloor, lifting up
10:54:35 DEBUG opendrift.models.oceandrift:590: 84 elements reached seafloor, set to bottom
10:54:35 DEBUG opendrift.models.basemodel:836: Lifting 84 elements to seafloor.
10:54:35 DEBUG opendrift.models.sedimentdrift:112: Settling 84 elements at seafloor
10:54:35 DEBUG opendrift.models.oceandrift:572: 390 elements penetrated seafloor, lifting up
10:54:35 DEBUG opendrift.models.oceandrift:590: 68 elements reached seafloor, set to bottom
10:54:35 DEBUG opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
10:54:35 DEBUG opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
10:54:35 DEBUG opendrift.models.oceandrift:572: 394 elements penetrated seafloor, lifting up
10:54:35 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:54:35 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:54:35 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:54:35 DEBUG opendrift.models.oceandrift:572: 357 elements penetrated seafloor, lifting up
10:54:35 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:54:35 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:54:35 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:54:35 DEBUG opendrift.models.oceandrift:572: 362 elements penetrated seafloor, lifting up
10:54:35 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:54:35 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:54:35 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:54:35 DEBUG opendrift.models.oceandrift:572: 320 elements penetrated seafloor, lifting up
10:54:35 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:54:35 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:54:35 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:54:35 DEBUG opendrift.models.oceandrift:572: 344 elements penetrated seafloor, lifting up
10:54:35 DEBUG opendrift.models.oceandrift:590: 35 elements reached seafloor, set to bottom
10:54:35 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
10:54:35 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
10:54:35 DEBUG opendrift.models.oceandrift:572: 357 elements penetrated seafloor, lifting up
10:54:35 DEBUG opendrift.models.oceandrift:590: 35 elements reached seafloor, set to bottom
10:54:35 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
10:54:35 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
10:54:35 DEBUG opendrift.models.oceandrift:572: 333 elements penetrated seafloor, lifting up
10:54:35 DEBUG opendrift.models.oceandrift:590: 42 elements reached seafloor, set to bottom
10:54:35 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
10:54:35 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
10:54:35 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:35 DEBUG opendrift.models.basemodel:2945: 4583 active elements (0 deactivated)
10:54:35 DEBUG opendrift.models.basemodel:1658: to be seeded: 5417, already seeded 4583
10:54:35 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:35 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:35 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:35 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:35 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:35 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:35 DEBUG opendrift.models.basemodel:1253: Data needed for 4618 elements
10:54:35 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:35 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 08:00:00 (before)
2023-08-22 09:00:00 (after)
10:54:35 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 08:00:00) in space (linearNDFast)
10:54:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:35 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:35 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:35 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:35 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:35 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 18.0476 (max)
10:54:35 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:35 DEBUG opendrift.models.basemodel:1527: 4618 active elements
10:54:35 DEBUG opendrift.models.basemodel:1538: 59.099727437014614 <- latitude -> 59.189693187664005
10:54:35 DEBUG opendrift.models.basemodel:1543: 10.869162336077304 <- longitude -> 11.039840778546548
10:54:35 DEBUG opendrift.models.basemodel:1548: -14.141454696655273 <- z -> 0.0
10:54:35 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:35 DEBUG opendrift.models.basemodel:836: Lifting 348 elements to seafloor.
10:54:35 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:35 INFO opendrift.models.basemodel:2882: 2023-08-22 08:52:19.552469 - step 133 of 216 - 4618 active elements (0 deactivated)
10:54:35 DEBUG opendrift.models.basemodel:2888: 5382 elements scheduled.
10:54:35 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:35 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:35 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:35 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:35 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:35 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:35 DEBUG opendrift.models.basemodel:1253: Data needed for 4618 elements
10:54:35 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:35 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:35 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:35 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:35 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:35 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:35 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:35 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:35 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:35 DEBUG opendrift.models.basemodel:1253: Data needed for 4618 elements
10:54:35 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:35 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 08:00:00 (before)
2023-08-22 09:00:00 (after)
10:54:36 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:36 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:36 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:36 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:36 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:36 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:36 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x24x5) for time after (2023-08-22 09:00:00)
10:54:36 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 08:00:00) in space (linearNDFast)
10:54:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:36 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 09:00:00) in space (linearNDFast)
10:54:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2258 elements, expanding data 1
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2258 elements, expanding data 1
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2444 elements, expanding data 1
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 485 elements, expanding data 2
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 3
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2444 elements, expanding data 1
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 485 elements, expanding data 2
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 3
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2444 elements, expanding data 1
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 485 elements, expanding data 2
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 3
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2444 elements, expanding data 1
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 485 elements, expanding data 2
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 3
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2444 elements, expanding data 1
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 485 elements, expanding data 2
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 86 elements, expanding data 3
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3416 elements, expanding data 1
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1070 elements, expanding data 2
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3416 elements, expanding data 1
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1070 elements, expanding data 2
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3416 elements, expanding data 1
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1070 elements, expanding data 2
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3416 elements, expanding data 1
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1070 elements, expanding data 2
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3416 elements, expanding data 1
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1070 elements, expanding data 2
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2258 elements, expanding data 1
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2258 elements, expanding data 1
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2258 elements, expanding data 1
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2258 elements, expanding data 1
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2258 elements, expanding data 1
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
10:54:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:36 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 08:00:00, weight 0.13) and
after (2023-08-22 09:00:00, weight 0.87) in time
10:54:36 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.1308482319881 and -58.96016976942978 degrees.
10:54:36 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.1308482319881 and -58.96016976942978 degrees.
10:54:36 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:36 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:36 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:36 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:36 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:36 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:36 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.790262 (min) 1.21333 (max)
10:54:36 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.91104 (min) 0.839072 (max)
10:54:36 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000788064 (min) 0.00074001 (max)
10:54:36 DEBUG opendrift.models.basemodel:1524: x_wind: -5.09362 (min) 10.2732 (max)
10:54:36 DEBUG opendrift.models.basemodel:1524: y_wind: -4.7051 (min) 9.66126 (max)
10:54:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:36 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:36 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:36 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:36 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 18.0476 (max)
10:54:36 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:36 DEBUG opendrift.models.basemodel:1527: 4618 active elements
10:54:36 DEBUG opendrift.models.basemodel:1538: 59.099727437014614 <- latitude -> 59.189693187664005
10:54:36 DEBUG opendrift.models.basemodel:1543: 10.869162336077304 <- longitude -> 11.039840778546548
10:54:36 DEBUG opendrift.models.basemodel:1548: -14.094673156738281 <- z -> 0.0
10:54:36 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:36 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:36 DEBUG opendrift.models.physics_methods:940: min: 0.047913, mean: 3.353286, max: 9.162598
10:54:36 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.047913, mean: 3.353286, max: 9.162598
10:54:36 DEBUG opendrift.models.basemodel:813: 561 elements hit coastline, moving back to water
10:54:36 DEBUG opendrift.models.basemodel:836: Lifting 12 elements to seafloor.
10:54:36 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:36 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:36 DEBUG opendrift.models.physics_methods:741: Advecting 41 of 4618 elements above 0.100m with wind-sheared ocean current (0.002011 m/s - 0.153255 m/s)
10:54:36 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:36 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:36 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.10388591784627914
10:54:36 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:36 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:36 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:36 DEBUG opendrift.models.oceandrift:572: 513 elements penetrated seafloor, lifting up
10:54:36 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:54:36 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:54:36 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:54:36 DEBUG opendrift.models.oceandrift:572: 471 elements penetrated seafloor, lifting up
10:54:36 DEBUG opendrift.models.oceandrift:590: 71 elements reached seafloor, set to bottom
10:54:36 DEBUG opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
10:54:36 DEBUG opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
10:54:36 DEBUG opendrift.models.oceandrift:572: 427 elements penetrated seafloor, lifting up
10:54:36 DEBUG opendrift.models.oceandrift:590: 62 elements reached seafloor, set to bottom
10:54:36 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
10:54:36 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
10:54:36 DEBUG opendrift.models.oceandrift:572: 382 elements penetrated seafloor, lifting up
10:54:36 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:54:36 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:54:36 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:54:36 DEBUG opendrift.models.oceandrift:572: 371 elements penetrated seafloor, lifting up
10:54:36 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:54:36 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:54:36 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:54:36 DEBUG opendrift.models.oceandrift:572: 377 elements penetrated seafloor, lifting up
10:54:36 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:54:36 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:54:36 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:54:36 DEBUG opendrift.models.oceandrift:572: 339 elements penetrated seafloor, lifting up
10:54:36 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:54:36 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:54:36 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:54:36 DEBUG opendrift.models.oceandrift:572: 338 elements penetrated seafloor, lifting up
10:54:36 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:54:36 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:54:36 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:54:36 DEBUG opendrift.models.oceandrift:572: 330 elements penetrated seafloor, lifting up
10:54:36 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:54:36 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:54:36 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:54:36 DEBUG opendrift.models.oceandrift:572: 329 elements penetrated seafloor, lifting up
10:54:36 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:54:36 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:54:36 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:54:36 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:36 DEBUG opendrift.models.basemodel:2945: 4618 active elements (0 deactivated)
10:54:36 DEBUG opendrift.models.basemodel:1658: to be seeded: 5382, already seeded 4618
10:54:36 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:36 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:36 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:36 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:36 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:36 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:36 DEBUG opendrift.models.basemodel:1253: Data needed for 4653 elements
10:54:36 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:36 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 09:00:00 (before)
2023-08-22 10:00:00 (after)
10:54:36 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 09:00:00) in space (linearNDFast)
10:54:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:36 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:36 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:36 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:36 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:36 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:36 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 19.5067 (max)
10:54:36 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:36 DEBUG opendrift.models.basemodel:1527: 4653 active elements
10:54:36 DEBUG opendrift.models.basemodel:1538: 59.10036624867893 <- latitude -> 59.18924442049541
10:54:36 DEBUG opendrift.models.basemodel:1543: 10.86476101323428 <- longitude -> 11.043650984534878
10:54:36 DEBUG opendrift.models.basemodel:1548: -14.461794209190026 <- z -> 0.0
10:54:36 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:36 DEBUG opendrift.models.basemodel:836: Lifting 323 elements to seafloor.
10:54:36 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:36 INFO opendrift.models.basemodel:2882: 2023-08-22 09:02:19.552469 - step 134 of 216 - 4653 active elements (0 deactivated)
10:54:36 DEBUG opendrift.models.basemodel:2888: 5347 elements scheduled.
10:54:36 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:36 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:36 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:36 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:36 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:36 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:36 DEBUG opendrift.models.basemodel:1253: Data needed for 4653 elements
10:54:36 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:36 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:36 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:36 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:36 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:36 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:36 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:36 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:36 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:36 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:36 DEBUG opendrift.models.basemodel:1253: Data needed for 4653 elements
10:54:36 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:36 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 09:00:00 (before)
2023-08-22 10:00:00 (after)
10:54:37 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:37 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:37 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:37 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:37 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:37 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:37 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x5) for time after (2023-08-22 10:00:00)
10:54:37 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 09:00:00) in space (linearNDFast)
10:54:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:37 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 10:00:00) in space (linearNDFast)
10:54:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2254 elements, expanding data 1
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2254 elements, expanding data 1
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2449 elements, expanding data 1
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 487 elements, expanding data 2
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 3
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2449 elements, expanding data 1
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 487 elements, expanding data 2
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 3
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2449 elements, expanding data 1
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 487 elements, expanding data 2
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 3
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2449 elements, expanding data 1
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 487 elements, expanding data 2
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 3
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2449 elements, expanding data 1
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 487 elements, expanding data 2
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 3
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3427 elements, expanding data 1
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1068 elements, expanding data 2
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3427 elements, expanding data 1
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1068 elements, expanding data 2
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3427 elements, expanding data 1
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1068 elements, expanding data 2
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3427 elements, expanding data 1
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1068 elements, expanding data 2
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3427 elements, expanding data 1
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1068 elements, expanding data 2
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2254 elements, expanding data 1
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2254 elements, expanding data 1
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2254 elements, expanding data 1
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2254 elements, expanding data 1
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2254 elements, expanding data 1
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 88 elements, expanding data 2
10:54:37 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:37 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 09:00:00, weight 0.96) and
after (2023-08-22 10:00:00, weight 0.04) in time
10:54:37 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.13524956217982 and -58.95635957001186 degrees.
10:54:37 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.13524956217982 and -58.95635957001186 degrees.
10:54:37 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:37 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:37 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:37 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:37 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:37 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:37 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.772835 (min) 0.89846 (max)
10:54:37 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.03492 (min) 0.808185 (max)
10:54:37 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000811003 (min) 0.000713679 (max)
10:54:37 DEBUG opendrift.models.basemodel:1524: x_wind: -5.59109 (min) 10.4215 (max)
10:54:37 DEBUG opendrift.models.basemodel:1524: y_wind: -4.79047 (min) 10.2025 (max)
10:54:37 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:37 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:37 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:37 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:37 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:37 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:37 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:37 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 19.5067 (max)
10:54:37 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:37 DEBUG opendrift.models.basemodel:1527: 4653 active elements
10:54:37 DEBUG opendrift.models.basemodel:1538: 59.10036624867893 <- latitude -> 59.18924442049541
10:54:37 DEBUG opendrift.models.basemodel:1543: 10.86476101323428 <- longitude -> 11.043650984534878
10:54:37 DEBUG opendrift.models.basemodel:1548: -14.461794209190026 <- z -> 0.0
10:54:37 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:37 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:37 DEBUG opendrift.models.physics_methods:940: min: 0.048625, mean: 3.402606, max: 9.986665
10:54:37 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.048625, mean: 3.402606, max: 9.986665
10:54:37 DEBUG opendrift.models.basemodel:813: 575 elements hit coastline, moving back to water
10:54:37 DEBUG opendrift.models.basemodel:836: Lifting 107 elements to seafloor.
10:54:37 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:37 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:37 DEBUG opendrift.models.physics_methods:741: Advecting 40 of 4653 elements above 0.100m with wind-sheared ocean current (0.000648 m/s - 0.163802 m/s)
10:54:37 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:37 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:37 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.12341210671480178
10:54:37 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:37 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:37 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:37 DEBUG opendrift.models.oceandrift:572: 521 elements penetrated seafloor, lifting up
10:54:37 DEBUG opendrift.models.oceandrift:590: 62 elements reached seafloor, set to bottom
10:54:37 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
10:54:37 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
10:54:37 DEBUG opendrift.models.oceandrift:572: 433 elements penetrated seafloor, lifting up
10:54:37 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:54:37 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:54:37 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:54:37 DEBUG opendrift.models.oceandrift:572: 371 elements penetrated seafloor, lifting up
10:54:37 DEBUG opendrift.models.oceandrift:590: 54 elements reached seafloor, set to bottom
10:54:37 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
10:54:37 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
10:54:37 DEBUG opendrift.models.oceandrift:572: 389 elements penetrated seafloor, lifting up
10:54:37 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:54:37 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:54:37 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:54:37 DEBUG opendrift.models.oceandrift:572: 384 elements penetrated seafloor, lifting up
10:54:37 DEBUG opendrift.models.oceandrift:590: 68 elements reached seafloor, set to bottom
10:54:37 DEBUG opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
10:54:37 DEBUG opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
10:54:37 DEBUG opendrift.models.oceandrift:572: 332 elements penetrated seafloor, lifting up
10:54:37 DEBUG opendrift.models.oceandrift:590: 43 elements reached seafloor, set to bottom
10:54:37 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
10:54:37 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
10:54:37 DEBUG opendrift.models.oceandrift:572: 332 elements penetrated seafloor, lifting up
10:54:37 DEBUG opendrift.models.oceandrift:590: 38 elements reached seafloor, set to bottom
10:54:37 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
10:54:37 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
10:54:37 DEBUG opendrift.models.oceandrift:572: 332 elements penetrated seafloor, lifting up
10:54:37 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:54:37 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:54:37 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:54:37 DEBUG opendrift.models.oceandrift:572: 346 elements penetrated seafloor, lifting up
10:54:37 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:54:37 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:54:37 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:54:37 DEBUG opendrift.models.oceandrift:572: 337 elements penetrated seafloor, lifting up
10:54:37 DEBUG opendrift.models.oceandrift:590: 41 elements reached seafloor, set to bottom
10:54:37 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
10:54:37 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
10:54:37 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:37 DEBUG opendrift.models.basemodel:2945: 4653 active elements (0 deactivated)
10:54:37 DEBUG opendrift.models.basemodel:1658: to be seeded: 5347, already seeded 4653
10:54:37 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:37 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:37 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:37 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:37 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:37 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:37 DEBUG opendrift.models.basemodel:1253: Data needed for 4688 elements
10:54:37 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:37 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 09:00:00 (before)
2023-08-22 10:00:00 (after)
10:54:37 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 09:00:00) in space (linearNDFast)
10:54:37 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:37 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:37 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:37 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:37 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:37 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:37 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 19.6013 (max)
10:54:37 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:37 DEBUG opendrift.models.basemodel:1527: 4688 active elements
10:54:37 DEBUG opendrift.models.basemodel:1538: 59.09981519814839 <- latitude -> 59.18909392073277
10:54:37 DEBUG opendrift.models.basemodel:1543: 10.864485084508033 <- longitude -> 11.042637333932335
10:54:37 DEBUG opendrift.models.basemodel:1548: -15.103700937347787 <- z -> 0.0
10:54:37 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:37 DEBUG opendrift.models.basemodel:836: Lifting 334 elements to seafloor.
10:54:37 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:37 INFO opendrift.models.basemodel:2882: 2023-08-22 09:12:19.552469 - step 135 of 216 - 4688 active elements (0 deactivated)
10:54:37 DEBUG opendrift.models.basemodel:2888: 5312 elements scheduled.
10:54:37 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:37 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:37 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:37 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:37 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:37 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:37 DEBUG opendrift.models.basemodel:1253: Data needed for 4688 elements
10:54:37 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:37 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:37 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:37 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:37 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:37 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:37 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:37 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:37 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:37 DEBUG opendrift.models.basemodel:1253: Data needed for 4688 elements
10:54:37 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:37 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 09:00:00 (before)
2023-08-22 10:00:00 (after)
10:54:38 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:38 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:38 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:38 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:38 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:38 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:38 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x24x6) for time after (2023-08-22 10:00:00)
10:54:38 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 09:00:00) in space (linearNDFast)
10:54:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:38 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 10:00:00) in space (linearNDFast)
10:54:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2297 elements, expanding data 1
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2297 elements, expanding data 1
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2479 elements, expanding data 1
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 500 elements, expanding data 2
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 3
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2479 elements, expanding data 1
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 500 elements, expanding data 2
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 3
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2479 elements, expanding data 1
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 500 elements, expanding data 2
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 3
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2479 elements, expanding data 1
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 500 elements, expanding data 2
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 3
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2479 elements, expanding data 1
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 500 elements, expanding data 2
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 3
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2479 elements, expanding data 1
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 500 elements, expanding data 2
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 79 elements, expanding data 3
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3477 elements, expanding data 1
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 2
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3477 elements, expanding data 1
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 2
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3477 elements, expanding data 1
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 2
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3477 elements, expanding data 1
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 2
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3477 elements, expanding data 1
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 2
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3477 elements, expanding data 1
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1081 elements, expanding data 2
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2297 elements, expanding data 1
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2297 elements, expanding data 1
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2297 elements, expanding data 1
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2297 elements, expanding data 1
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2297 elements, expanding data 1
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2297 elements, expanding data 1
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 2
10:54:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:38 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 09:00:00, weight 0.79) and
after (2023-08-22 10:00:00, weight 0.21) in time
10:54:38 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.13552549169311 and -58.9573732228296 degrees.
10:54:38 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.13552549169311 and -58.9573732228296 degrees.
10:54:38 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:38 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:38 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:38 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:38 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:38 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:38 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.779614 (min) 1.02976 (max)
10:54:38 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.93516 (min) 0.833991 (max)
10:54:38 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000612781 (min) 0.000760657 (max)
10:54:38 DEBUG opendrift.models.basemodel:1524: x_wind: -4.56775 (min) 9.90412 (max)
10:54:38 DEBUG opendrift.models.basemodel:1524: y_wind: -4.57658 (min) 11.0537 (max)
10:54:38 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:38 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:38 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:38 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:38 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:38 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:38 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:38 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 19.6013 (max)
10:54:38 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:38 DEBUG opendrift.models.basemodel:1527: 4688 active elements
10:54:38 DEBUG opendrift.models.basemodel:1538: 59.09981519814839 <- latitude -> 59.18909392073277
10:54:38 DEBUG opendrift.models.basemodel:1543: 10.864485084508033 <- longitude -> 11.042637333932335
10:54:38 DEBUG opendrift.models.basemodel:1548: -15.103700937347787 <- z -> 0.0
10:54:38 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:38 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:38 DEBUG opendrift.models.physics_methods:940: min: 0.029627, mean: 3.456229, max: 9.541936
10:54:38 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.029627, mean: 3.456229, max: 9.541936
10:54:38 DEBUG opendrift.models.basemodel:813: 595 elements hit coastline, moving back to water
10:54:38 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:54:38 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:38 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:38 DEBUG opendrift.models.physics_methods:741: Advecting 41 of 4688 elements above 0.100m with wind-sheared ocean current (0.001524 m/s - 0.133138 m/s)
10:54:38 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:38 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:38 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.11266552857645035
10:54:38 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:38 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:38 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:38 DEBUG opendrift.models.oceandrift:572: 531 elements penetrated seafloor, lifting up
10:54:38 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:54:38 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:54:38 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:54:38 DEBUG opendrift.models.oceandrift:572: 442 elements penetrated seafloor, lifting up
10:54:38 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:54:38 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:54:38 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:54:38 DEBUG opendrift.models.oceandrift:572: 424 elements penetrated seafloor, lifting up
10:54:38 DEBUG opendrift.models.oceandrift:590: 42 elements reached seafloor, set to bottom
10:54:38 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
10:54:38 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
10:54:38 DEBUG opendrift.models.oceandrift:572: 413 elements penetrated seafloor, lifting up
10:54:38 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:54:38 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:54:38 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:54:38 DEBUG opendrift.models.oceandrift:572: 375 elements penetrated seafloor, lifting up
10:54:38 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:54:38 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:54:38 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:54:38 DEBUG opendrift.models.oceandrift:572: 383 elements penetrated seafloor, lifting up
10:54:38 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:54:38 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:54:38 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:54:38 DEBUG opendrift.models.oceandrift:572: 384 elements penetrated seafloor, lifting up
10:54:38 DEBUG opendrift.models.oceandrift:590: 54 elements reached seafloor, set to bottom
10:54:38 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
10:54:38 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
10:54:38 DEBUG opendrift.models.oceandrift:572: 358 elements penetrated seafloor, lifting up
10:54:38 DEBUG opendrift.models.oceandrift:590: 44 elements reached seafloor, set to bottom
10:54:38 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
10:54:38 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
10:54:38 DEBUG opendrift.models.oceandrift:572: 307 elements penetrated seafloor, lifting up
10:54:38 DEBUG opendrift.models.oceandrift:590: 41 elements reached seafloor, set to bottom
10:54:38 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
10:54:38 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
10:54:38 DEBUG opendrift.models.oceandrift:572: 355 elements penetrated seafloor, lifting up
10:54:38 DEBUG opendrift.models.oceandrift:590: 38 elements reached seafloor, set to bottom
10:54:38 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
10:54:38 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
10:54:38 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:38 DEBUG opendrift.models.basemodel:2945: 4688 active elements (0 deactivated)
10:54:38 DEBUG opendrift.models.basemodel:1658: to be seeded: 5312, already seeded 4688
10:54:38 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:54:38 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:38 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:38 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:38 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:38 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:38 DEBUG opendrift.models.basemodel:1253: Data needed for 4722 elements
10:54:38 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:38 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 09:00:00 (before)
2023-08-22 10:00:00 (after)
10:54:38 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 09:00:00) in space (linearNDFast)
10:54:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:38 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:38 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:38 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:38 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:38 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:38 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 20.3574 (max)
10:54:38 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:38 DEBUG opendrift.models.basemodel:1527: 4722 active elements
10:54:38 DEBUG opendrift.models.basemodel:1538: 59.098704531913555 <- latitude -> 59.18878433916066
10:54:38 DEBUG opendrift.models.basemodel:1543: 10.86220945439696 <- longitude -> 11.045091536852375
10:54:38 DEBUG opendrift.models.basemodel:1548: -18.108900299072264 <- z -> 0.0
10:54:38 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:38 DEBUG opendrift.models.basemodel:836: Lifting 299 elements to seafloor.
10:54:38 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:38 INFO opendrift.models.basemodel:2882: 2023-08-22 09:22:19.552469 - step 136 of 216 - 4722 active elements (0 deactivated)
10:54:38 DEBUG opendrift.models.basemodel:2888: 5278 elements scheduled.
10:54:38 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:38 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:38 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:38 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:38 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:38 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:38 DEBUG opendrift.models.basemodel:1253: Data needed for 4722 elements
10:54:38 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:38 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:38 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:38 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:38 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:38 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:38 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:38 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:38 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:38 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:38 DEBUG opendrift.models.basemodel:1253: Data needed for 4722 elements
10:54:38 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:38 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 09:00:00 (before)
2023-08-22 10:00:00 (after)
10:54:39 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:39 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:39 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:39 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:39 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:39 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:39 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x25x6) for time after (2023-08-22 10:00:00)
10:54:39 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 09:00:00) in space (linearNDFast)
10:54:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:39 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 10:00:00) in space (linearNDFast)
10:54:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2313 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2313 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2501 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 507 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2501 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 507 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2501 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 507 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2501 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 507 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2501 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 507 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2501 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 507 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 85 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3486 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1080 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3486 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1080 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3486 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1080 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3486 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1080 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3486 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1080 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3486 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1080 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2313 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2313 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2313 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2313 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2313 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2313 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 92 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:39 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 09:00:00, weight 0.63) and
after (2023-08-22 10:00:00, weight 0.37) in time
10:54:39 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.137801121500296 and -58.95491901075808 degrees.
10:54:39 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.137801121500296 and -58.95491901075808 degrees.
10:54:39 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:39 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:39 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:39 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:39 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:39 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:39 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.755286 (min) 1.12202 (max)
10:54:39 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.00277 (min) 0.874806 (max)
10:54:39 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000371346 (min) 0.000817206 (max)
10:54:39 DEBUG opendrift.models.basemodel:1524: x_wind: -4.25305 (min) 9.27773 (max)
10:54:39 DEBUG opendrift.models.basemodel:1524: y_wind: -5.66636 (min) 10.4278 (max)
10:54:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:39 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:39 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:39 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:39 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 20.3574 (max)
10:54:39 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:39 DEBUG opendrift.models.basemodel:1527: 4722 active elements
10:54:39 DEBUG opendrift.models.basemodel:1538: 59.098704531913555 <- latitude -> 59.18878433916066
10:54:39 DEBUG opendrift.models.basemodel:1543: 10.86220945439696 <- longitude -> 11.045091536852375
10:54:39 DEBUG opendrift.models.basemodel:1548: -18.108900299072264 <- z -> 0.0
10:54:39 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:39 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:39 DEBUG opendrift.models.physics_methods:940: min: 0.040688, mean: 3.427630, max: 8.966878
10:54:39 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.040688, mean: 3.427630, max: 8.966878
10:54:39 DEBUG opendrift.models.basemodel:813: 572 elements hit coastline, moving back to water
10:54:39 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
10:54:39 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:39 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:39 DEBUG opendrift.models.physics_methods:741: Advecting 37 of 4722 elements above 0.100m with wind-sheared ocean current (0.000548 m/s - 0.122835 m/s)
10:54:39 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:39 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:39 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.09949533564479827
10:54:39 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:39 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:39 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:39 DEBUG opendrift.models.oceandrift:572: 553 elements penetrated seafloor, lifting up
10:54:39 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:54:39 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:54:39 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:54:39 DEBUG opendrift.models.oceandrift:572: 461 elements penetrated seafloor, lifting up
10:54:39 DEBUG opendrift.models.oceandrift:590: 65 elements reached seafloor, set to bottom
10:54:39 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
10:54:39 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
10:54:39 DEBUG opendrift.models.oceandrift:572: 434 elements penetrated seafloor, lifting up
10:54:39 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:54:39 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:54:39 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:54:39 DEBUG opendrift.models.oceandrift:572: 390 elements penetrated seafloor, lifting up
10:54:39 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:54:39 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:54:39 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:54:39 DEBUG opendrift.models.oceandrift:572: 367 elements penetrated seafloor, lifting up
10:54:39 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:54:39 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:54:39 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:54:39 DEBUG opendrift.models.oceandrift:572: 334 elements penetrated seafloor, lifting up
10:54:39 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:54:39 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:54:39 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:54:39 DEBUG opendrift.models.oceandrift:572: 346 elements penetrated seafloor, lifting up
10:54:39 DEBUG opendrift.models.oceandrift:590: 34 elements reached seafloor, set to bottom
10:54:39 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
10:54:39 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
10:54:39 DEBUG opendrift.models.oceandrift:572: 357 elements penetrated seafloor, lifting up
10:54:39 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:54:39 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:54:39 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:54:39 DEBUG opendrift.models.oceandrift:572: 327 elements penetrated seafloor, lifting up
10:54:39 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:54:39 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:54:39 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:54:39 DEBUG opendrift.models.oceandrift:572: 314 elements penetrated seafloor, lifting up
10:54:39 DEBUG opendrift.models.oceandrift:590: 34 elements reached seafloor, set to bottom
10:54:39 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
10:54:39 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
10:54:39 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:39 DEBUG opendrift.models.basemodel:2945: 4722 active elements (0 deactivated)
10:54:39 DEBUG opendrift.models.basemodel:1658: to be seeded: 5278, already seeded 4722
10:54:39 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:39 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:39 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:39 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:39 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:39 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:39 DEBUG opendrift.models.basemodel:1253: Data needed for 4757 elements
10:54:39 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:39 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 09:00:00 (before)
2023-08-22 10:00:00 (after)
10:54:39 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 09:00:00) in space (linearNDFast)
10:54:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:39 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:39 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:39 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:39 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:39 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:39 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 21.2746 (max)
10:54:39 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:39 DEBUG opendrift.models.basemodel:1527: 4757 active elements
10:54:39 DEBUG opendrift.models.basemodel:1538: 59.0974147752536 <- latitude -> 59.189256663345795
10:54:39 DEBUG opendrift.models.basemodel:1543: 10.859574602321034 <- longitude -> 11.04451734204651
10:54:39 DEBUG opendrift.models.basemodel:1548: -15.229363441467285 <- z -> 0.0
10:54:39 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:39 DEBUG opendrift.models.basemodel:836: Lifting 331 elements to seafloor.
10:54:39 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:39 INFO opendrift.models.basemodel:2882: 2023-08-22 09:32:19.552469 - step 137 of 216 - 4757 active elements (0 deactivated)
10:54:39 DEBUG opendrift.models.basemodel:2888: 5243 elements scheduled.
10:54:39 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:39 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:39 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:39 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:39 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:39 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:39 DEBUG opendrift.models.basemodel:1253: Data needed for 4757 elements
10:54:39 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:39 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:39 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:39 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:39 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:39 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:39 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:39 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:39 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:39 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:39 DEBUG opendrift.models.basemodel:1253: Data needed for 4757 elements
10:54:39 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:39 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 09:00:00 (before)
2023-08-22 10:00:00 (after)
10:54:39 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:39 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:39 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:39 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:39 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:39 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:39 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x25x6) for time after (2023-08-22 10:00:00)
10:54:39 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 09:00:00) in space (linearNDFast)
10:54:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:39 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 10:00:00) in space (linearNDFast)
10:54:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2321 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2321 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2491 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 506 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 89 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2491 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 506 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 89 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2491 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 506 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 89 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2491 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 506 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 89 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2491 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 506 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 89 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2491 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 506 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 89 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3546 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1094 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3546 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1094 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3546 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1094 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3546 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1094 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3546 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1094 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3546 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1094 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2321 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2321 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2321 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2321 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2321 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2321 elements, expanding data 1
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 2
10:54:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:39 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 09:00:00, weight 0.46) and
after (2023-08-22 10:00:00, weight 0.54) in time
10:54:39 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.140435965624356 and -58.95549319547881 degrees.
10:54:39 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.140435965624356 and -58.95549319547881 degrees.
10:54:39 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:39 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:39 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:39 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:39 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:39 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:39 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.788725 (min) 1.21207 (max)
10:54:39 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.947011 (min) 0.742126 (max)
10:54:39 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000335406 (min) 0.000773481 (max)
10:54:39 DEBUG opendrift.models.basemodel:1524: x_wind: -4.09113 (min) 9.76428 (max)
10:54:39 DEBUG opendrift.models.basemodel:1524: y_wind: -5.14219 (min) 9.32955 (max)
10:54:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:39 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:39 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:39 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:39 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 21.2746 (max)
10:54:39 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:39 DEBUG opendrift.models.basemodel:1527: 4757 active elements
10:54:39 DEBUG opendrift.models.basemodel:1538: 59.0974147752536 <- latitude -> 59.189256663345795
10:54:39 DEBUG opendrift.models.basemodel:1543: 10.859574602321034 <- longitude -> 11.04451734204651
10:54:39 DEBUG opendrift.models.basemodel:1548: -15.229363441467285 <- z -> 0.0
10:54:39 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:39 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:39 DEBUG opendrift.models.physics_methods:940: min: 0.098426, mean: 3.539377, max: 9.618075
10:54:39 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.098426, mean: 3.539377, max: 9.618075
10:54:39 DEBUG opendrift.models.basemodel:813: 608 elements hit coastline, moving back to water
10:54:39 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:54:39 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:39 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:39 DEBUG opendrift.models.physics_methods:741: Advecting 39 of 4757 elements above 0.100m with wind-sheared ocean current (0.003281 m/s - 0.189709 m/s)
10:54:40 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:40 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:40 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.11447067566688537
10:54:40 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:40 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:40 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:40 DEBUG opendrift.models.oceandrift:572: 580 elements penetrated seafloor, lifting up
10:54:40 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:54:40 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:54:40 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:54:40 DEBUG opendrift.models.oceandrift:572: 452 elements penetrated seafloor, lifting up
10:54:40 DEBUG opendrift.models.oceandrift:590: 53 elements reached seafloor, set to bottom
10:54:40 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
10:54:40 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
10:54:40 DEBUG opendrift.models.oceandrift:572: 383 elements penetrated seafloor, lifting up
10:54:40 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:54:40 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:54:40 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:54:40 DEBUG opendrift.models.oceandrift:572: 403 elements penetrated seafloor, lifting up
10:54:40 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:54:40 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:54:40 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:54:40 DEBUG opendrift.models.oceandrift:572: 405 elements penetrated seafloor, lifting up
10:54:40 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:54:40 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:54:40 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:54:40 DEBUG opendrift.models.oceandrift:572: 385 elements penetrated seafloor, lifting up
10:54:40 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:54:40 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:54:40 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:54:40 DEBUG opendrift.models.oceandrift:572: 396 elements penetrated seafloor, lifting up
10:54:40 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:54:40 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:54:40 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:54:40 DEBUG opendrift.models.oceandrift:572: 359 elements penetrated seafloor, lifting up
10:54:40 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:54:40 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:54:40 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:54:40 DEBUG opendrift.models.oceandrift:572: 361 elements penetrated seafloor, lifting up
10:54:40 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:54:40 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:54:40 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:54:40 DEBUG opendrift.models.oceandrift:572: 350 elements penetrated seafloor, lifting up
10:54:40 DEBUG opendrift.models.oceandrift:590: 38 elements reached seafloor, set to bottom
10:54:40 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
10:54:40 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
10:54:40 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:40 DEBUG opendrift.models.basemodel:2945: 4757 active elements (0 deactivated)
10:54:40 DEBUG opendrift.models.basemodel:1658: to be seeded: 5243, already seeded 4757
10:54:40 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:40 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:40 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:40 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:40 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:40 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:40 DEBUG opendrift.models.basemodel:1253: Data needed for 4792 elements
10:54:40 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:40 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 09:00:00 (before)
2023-08-22 10:00:00 (after)
10:54:40 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 09:00:00) in space (linearNDFast)
10:54:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:40 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:40 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:40 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:40 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:40 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:40 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 20.5339 (max)
10:54:40 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:40 DEBUG opendrift.models.basemodel:1527: 4792 active elements
10:54:40 DEBUG opendrift.models.basemodel:1538: 59.09906547503509 <- latitude -> 59.18926154496974
10:54:40 DEBUG opendrift.models.basemodel:1543: 10.861803304985246 <- longitude -> 11.042744872011957
10:54:40 DEBUG opendrift.models.basemodel:1548: -19.053342612850535 <- z -> 0.0
10:54:40 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:40 DEBUG opendrift.models.basemodel:836: Lifting 285 elements to seafloor.
10:54:40 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:40 INFO opendrift.models.basemodel:2882: 2023-08-22 09:42:19.552469 - step 138 of 216 - 4792 active elements (0 deactivated)
10:54:40 DEBUG opendrift.models.basemodel:2888: 5208 elements scheduled.
10:54:40 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:40 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:40 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:40 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:40 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:40 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:40 DEBUG opendrift.models.basemodel:1253: Data needed for 4792 elements
10:54:40 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:40 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:40 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:40 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:40 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:40 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:40 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:40 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:40 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:40 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:40 DEBUG opendrift.models.basemodel:1253: Data needed for 4792 elements
10:54:40 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:40 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 09:00:00 (before)
2023-08-22 10:00:00 (after)
10:54:40 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:40 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:40 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:40 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:40 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:40 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:40 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x25x6) for time after (2023-08-22 10:00:00)
10:54:40 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 09:00:00) in space (linearNDFast)
10:54:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:40 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 10:00:00) in space (linearNDFast)
10:54:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2360 elements, expanding data 1
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 2
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2360 elements, expanding data 1
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 2
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2538 elements, expanding data 1
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 522 elements, expanding data 2
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 3
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2538 elements, expanding data 1
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 522 elements, expanding data 2
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 3
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2538 elements, expanding data 1
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 522 elements, expanding data 2
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 3
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2538 elements, expanding data 1
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 522 elements, expanding data 2
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 3
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2538 elements, expanding data 1
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 522 elements, expanding data 2
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 3
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2538 elements, expanding data 1
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 522 elements, expanding data 2
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 83 elements, expanding data 3
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3586 elements, expanding data 1
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1112 elements, expanding data 2
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3586 elements, expanding data 1
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1112 elements, expanding data 2
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3586 elements, expanding data 1
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1112 elements, expanding data 2
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3586 elements, expanding data 1
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1112 elements, expanding data 2
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3586 elements, expanding data 1
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1112 elements, expanding data 2
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3586 elements, expanding data 1
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1112 elements, expanding data 2
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2360 elements, expanding data 1
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 2
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2360 elements, expanding data 1
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 2
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2360 elements, expanding data 1
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 2
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2360 elements, expanding data 1
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 2
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2360 elements, expanding data 1
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 2
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2360 elements, expanding data 1
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 91 elements, expanding data 2
10:54:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:40 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 09:00:00, weight 0.29) and
after (2023-08-22 10:00:00, weight 0.71) in time
10:54:40 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.138207269961214 and -58.957265673506456 degrees.
10:54:40 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.138207269961214 and -58.957265673506456 degrees.
10:54:40 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:40 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:40 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:40 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:40 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:40 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:40 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.967972 (min) 1.11651 (max)
10:54:40 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.05484 (min) 0.819868 (max)
10:54:40 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000668772 (min) 0.000885998 (max)
10:54:40 DEBUG opendrift.models.basemodel:1524: x_wind: -4.808 (min) 9.30852 (max)
10:54:40 DEBUG opendrift.models.basemodel:1524: y_wind: -4.66955 (min) 9.61224 (max)
10:54:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:40 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:40 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:40 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:40 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 20.5339 (max)
10:54:40 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:40 DEBUG opendrift.models.basemodel:1527: 4792 active elements
10:54:40 DEBUG opendrift.models.basemodel:1538: 59.09906547503509 <- latitude -> 59.18926154496974
10:54:40 DEBUG opendrift.models.basemodel:1543: 10.861803304985246 <- longitude -> 11.042744872011957
10:54:40 DEBUG opendrift.models.basemodel:1548: -19.053342612850535 <- z -> 0.0
10:54:40 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:40 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:40 DEBUG opendrift.models.physics_methods:940: min: 0.069379, mean: 3.553706, max: 9.903785
10:54:40 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.069379, mean: 3.553706, max: 9.903785
10:54:40 DEBUG opendrift.models.basemodel:813: 621 elements hit coastline, moving back to water
10:54:40 DEBUG opendrift.models.basemodel:836: Lifting 110 elements to seafloor.
10:54:40 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:40 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:40 DEBUG opendrift.models.physics_methods:741: Advecting 38 of 4792 elements above 0.100m with wind-sheared ocean current (0.000606 m/s - 0.135506 m/s)
10:54:40 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:40 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:40 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.12137225792844772
10:54:40 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:40 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:40 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:40 DEBUG opendrift.models.oceandrift:572: 536 elements penetrated seafloor, lifting up
10:54:40 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:54:40 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:54:40 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:54:40 DEBUG opendrift.models.oceandrift:572: 448 elements penetrated seafloor, lifting up
10:54:40 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:54:40 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:54:40 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:54:40 DEBUG opendrift.models.oceandrift:572: 419 elements penetrated seafloor, lifting up
10:54:40 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:54:40 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:54:40 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:54:40 DEBUG opendrift.models.oceandrift:572: 409 elements penetrated seafloor, lifting up
10:54:40 DEBUG opendrift.models.oceandrift:590: 43 elements reached seafloor, set to bottom
10:54:40 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
10:54:40 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
10:54:40 DEBUG opendrift.models.oceandrift:572: 404 elements penetrated seafloor, lifting up
10:54:40 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:54:40 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:54:40 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:54:40 DEBUG opendrift.models.oceandrift:572: 376 elements penetrated seafloor, lifting up
10:54:40 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:54:40 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:54:40 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:54:40 DEBUG opendrift.models.oceandrift:572: 348 elements penetrated seafloor, lifting up
10:54:40 DEBUG opendrift.models.oceandrift:590: 54 elements reached seafloor, set to bottom
10:54:40 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
10:54:40 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
10:54:40 DEBUG opendrift.models.oceandrift:572: 356 elements penetrated seafloor, lifting up
10:54:40 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:54:40 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:54:40 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:54:40 DEBUG opendrift.models.oceandrift:572: 342 elements penetrated seafloor, lifting up
10:54:40 DEBUG opendrift.models.oceandrift:590: 40 elements reached seafloor, set to bottom
10:54:40 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
10:54:40 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
10:54:40 DEBUG opendrift.models.oceandrift:572: 353 elements penetrated seafloor, lifting up
10:54:40 DEBUG opendrift.models.oceandrift:590: 31 elements reached seafloor, set to bottom
10:54:40 DEBUG opendrift.models.basemodel:836: Lifting 31 elements to seafloor.
10:54:40 DEBUG opendrift.models.sedimentdrift:112: Settling 31 elements at seafloor
10:54:40 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:40 DEBUG opendrift.models.basemodel:2945: 4792 active elements (0 deactivated)
10:54:40 DEBUG opendrift.models.basemodel:1658: to be seeded: 5208, already seeded 4792
10:54:40 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:54:40 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:40 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:40 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:40 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:40 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:40 DEBUG opendrift.models.basemodel:1253: Data needed for 4826 elements
10:54:40 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:40 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 09:00:00 (before)
2023-08-22 10:00:00 (after)
10:54:40 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 09:00:00) in space (linearNDFast)
10:54:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:40 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:40 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:40 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:40 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:40 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:40 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 20.7929 (max)
10:54:40 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:40 DEBUG opendrift.models.basemodel:1527: 4826 active elements
10:54:40 DEBUG opendrift.models.basemodel:1538: 59.09952557309539 <- latitude -> 59.189103158853484
10:54:40 DEBUG opendrift.models.basemodel:1543: 10.862096043265572 <- longitude -> 11.044898305797641
10:54:40 DEBUG opendrift.models.basemodel:1548: -14.652055740356445 <- z -> 0.0
10:54:40 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:40 DEBUG opendrift.models.basemodel:836: Lifting 323 elements to seafloor.
10:54:40 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:40 INFO opendrift.models.basemodel:2882: 2023-08-22 09:52:19.552469 - step 139 of 216 - 4826 active elements (0 deactivated)
10:54:40 DEBUG opendrift.models.basemodel:2888: 5174 elements scheduled.
10:54:40 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:40 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:40 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:40 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:40 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:40 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:40 DEBUG opendrift.models.basemodel:1253: Data needed for 4826 elements
10:54:40 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:40 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:40 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:40 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:40 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:40 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:40 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:40 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:40 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:40 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:40 DEBUG opendrift.models.basemodel:1253: Data needed for 4826 elements
10:54:41 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:41 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 09:00:00 (before)
2023-08-22 10:00:00 (after)
10:54:41 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:41 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:41 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:41 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:41 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:41 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:41 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x25x5) for time after (2023-08-22 10:00:00)
10:54:41 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 09:00:00) in space (linearNDFast)
10:54:41 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:41 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 10:00:00) in space (linearNDFast)
10:54:41 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2372 elements, expanding data 1
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 2
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2372 elements, expanding data 1
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 2
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2551 elements, expanding data 1
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 523 elements, expanding data 2
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 89 elements, expanding data 3
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2551 elements, expanding data 1
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 523 elements, expanding data 2
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 89 elements, expanding data 3
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2551 elements, expanding data 1
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 523 elements, expanding data 2
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 89 elements, expanding data 3
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2551 elements, expanding data 1
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 523 elements, expanding data 2
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 89 elements, expanding data 3
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2551 elements, expanding data 1
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 523 elements, expanding data 2
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 89 elements, expanding data 3
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3596 elements, expanding data 1
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1113 elements, expanding data 2
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3596 elements, expanding data 1
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1113 elements, expanding data 2
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3596 elements, expanding data 1
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1113 elements, expanding data 2
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3596 elements, expanding data 1
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1113 elements, expanding data 2
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3596 elements, expanding data 1
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1113 elements, expanding data 2
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2372 elements, expanding data 1
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 2
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2372 elements, expanding data 1
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 2
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2372 elements, expanding data 1
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 2
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2372 elements, expanding data 1
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 2
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2372 elements, expanding data 1
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 101 elements, expanding data 2
10:54:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:41 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 09:00:00, weight 0.13) and
after (2023-08-22 10:00:00, weight 0.87) in time
10:54:41 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.137914524351814 and -58.95511223648725 degrees.
10:54:41 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.137914524351814 and -58.95511223648725 degrees.
10:54:41 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:41 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:41 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:41 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:41 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:41 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:41 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.901073 (min) 1.12052 (max)
10:54:41 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.994364 (min) 0.825623 (max)
10:54:41 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000677903 (min) 0.000886686 (max)
10:54:41 DEBUG opendrift.models.basemodel:1524: x_wind: -4.43114 (min) 9.93178 (max)
10:54:41 DEBUG opendrift.models.basemodel:1524: y_wind: -4.43386 (min) 9.24986 (max)
10:54:41 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:41 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:41 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:41 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:41 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:41 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:41 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:41 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 20.7929 (max)
10:54:41 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:41 DEBUG opendrift.models.basemodel:1527: 4826 active elements
10:54:41 DEBUG opendrift.models.basemodel:1538: 59.09952557309539 <- latitude -> 59.189103158853484
10:54:41 DEBUG opendrift.models.basemodel:1543: 10.862096043265572 <- longitude -> 11.044898305797641
10:54:41 DEBUG opendrift.models.basemodel:1548: -14.652055740356445 <- z -> 0.0
10:54:41 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:41 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:41 DEBUG opendrift.models.physics_methods:940: min: 0.094742, mean: 3.679439, max: 10.205834
10:54:41 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.094742, mean: 3.679439, max: 10.205834
10:54:41 DEBUG opendrift.models.basemodel:813: 597 elements hit coastline, moving back to water
10:54:41 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:54:41 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:41 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:41 DEBUG opendrift.models.physics_methods:741: Advecting 39 of 4826 elements above 0.100m with wind-sheared ocean current (0.006472 m/s - 0.148861 m/s)
10:54:41 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:41 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:41 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.12888818536336896
10:54:41 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:41 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:41 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:41 DEBUG opendrift.models.oceandrift:572: 576 elements penetrated seafloor, lifting up
10:54:41 DEBUG opendrift.models.oceandrift:590: 65 elements reached seafloor, set to bottom
10:54:41 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
10:54:41 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
10:54:41 DEBUG opendrift.models.oceandrift:572: 431 elements penetrated seafloor, lifting up
10:54:41 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:54:41 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:54:41 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:54:41 DEBUG opendrift.models.oceandrift:572: 428 elements penetrated seafloor, lifting up
10:54:41 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:54:41 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:54:41 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:54:41 DEBUG opendrift.models.oceandrift:572: 413 elements penetrated seafloor, lifting up
10:54:41 DEBUG opendrift.models.oceandrift:590: 64 elements reached seafloor, set to bottom
10:54:41 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
10:54:41 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
10:54:41 DEBUG opendrift.models.oceandrift:572: 381 elements penetrated seafloor, lifting up
10:54:41 DEBUG opendrift.models.oceandrift:590: 29 elements reached seafloor, set to bottom
10:54:41 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
10:54:41 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
10:54:41 DEBUG opendrift.models.oceandrift:572: 372 elements penetrated seafloor, lifting up
10:54:41 DEBUG opendrift.models.oceandrift:590: 53 elements reached seafloor, set to bottom
10:54:41 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
10:54:41 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
10:54:41 DEBUG opendrift.models.oceandrift:572: 354 elements penetrated seafloor, lifting up
10:54:41 DEBUG opendrift.models.oceandrift:590: 38 elements reached seafloor, set to bottom
10:54:41 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
10:54:41 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
10:54:41 DEBUG opendrift.models.oceandrift:572: 353 elements penetrated seafloor, lifting up
10:54:41 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:54:41 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:54:41 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:54:41 DEBUG opendrift.models.oceandrift:572: 344 elements penetrated seafloor, lifting up
10:54:41 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:54:41 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:54:41 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:54:41 DEBUG opendrift.models.oceandrift:572: 314 elements penetrated seafloor, lifting up
10:54:41 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:54:41 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:54:41 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:54:41 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:41 DEBUG opendrift.models.basemodel:2945: 4826 active elements (0 deactivated)
10:54:41 DEBUG opendrift.models.basemodel:1658: to be seeded: 5174, already seeded 4826
10:54:41 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:41 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:41 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:41 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:41 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:41 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:41 DEBUG opendrift.models.basemodel:1253: Data needed for 4861 elements
10:54:41 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:41 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 10:00:00 (before)
2023-08-22 11:00:00 (after)
10:54:41 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 10:00:00) in space (linearNDFast)
10:54:41 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:41 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:41 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:41 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:41 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:41 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:41 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 20.5023 (max)
10:54:41 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:41 DEBUG opendrift.models.basemodel:1527: 4861 active elements
10:54:41 DEBUG opendrift.models.basemodel:1538: 59.0982289262262 <- latitude -> 59.188502995340194
10:54:41 DEBUG opendrift.models.basemodel:1543: 10.861736045472446 <- longitude -> 11.045019176942258
10:54:41 DEBUG opendrift.models.basemodel:1548: -14.642055740356446 <- z -> 0.0
10:54:41 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:41 DEBUG opendrift.models.basemodel:836: Lifting 310 elements to seafloor.
10:54:41 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:41 INFO opendrift.models.basemodel:2882: 2023-08-22 10:02:19.552469 - step 140 of 216 - 4861 active elements (0 deactivated)
10:54:41 DEBUG opendrift.models.basemodel:2888: 5139 elements scheduled.
10:54:41 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:41 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:41 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:41 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:41 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:41 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:41 DEBUG opendrift.models.basemodel:1253: Data needed for 4861 elements
10:54:41 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:41 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:41 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:41 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:41 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:41 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:41 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:41 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:41 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:41 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:41 DEBUG opendrift.models.basemodel:1253: Data needed for 4861 elements
10:54:41 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:41 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 10:00:00 (before)
2023-08-22 11:00:00 (after)
10:54:43 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:43 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:43 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:43 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:43 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:43 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:43 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x25x5) for time after (2023-08-22 11:00:00)
10:54:43 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 10:00:00) in space (linearNDFast)
10:54:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:43 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 11:00:00) in space (linearNDFast)
10:54:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2354 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 100 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2354 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 100 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2550 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 516 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2550 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 516 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2550 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 516 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2550 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 516 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2550 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 516 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 95 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3614 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1120 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3614 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1120 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3614 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1120 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3614 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1120 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3614 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1120 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2354 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 100 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2354 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 100 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2354 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 100 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2354 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 100 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2354 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 100 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:54:43 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 10:00:00, weight 0.96) and
after (2023-08-22 11:00:00, weight 0.04) in time
10:54:43 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.13827453348691 and -58.95499136968095 degrees.
10:54:43 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.13827453348691 and -58.95499136968095 degrees.
10:54:43 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:43 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:43 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:43 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:43 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:43 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:43 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.837528 (min) 1.11755 (max)
10:54:43 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.99695 (min) 0.824555 (max)
10:54:43 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000686046 (min) 0.000798056 (max)
10:54:43 DEBUG opendrift.models.basemodel:1524: x_wind: -4.45848 (min) 10.7207 (max)
10:54:43 DEBUG opendrift.models.basemodel:1524: y_wind: -5.06214 (min) 9.009 (max)
10:54:43 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:43 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:43 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:43 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:43 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:43 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:43 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:43 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 20.5023 (max)
10:54:43 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:43 DEBUG opendrift.models.basemodel:1527: 4861 active elements
10:54:43 DEBUG opendrift.models.basemodel:1538: 59.0982289262262 <- latitude -> 59.188502995340194
10:54:43 DEBUG opendrift.models.basemodel:1543: 10.861736045472446 <- longitude -> 11.045019176942258
10:54:43 DEBUG opendrift.models.basemodel:1548: -14.642055740356446 <- z -> 0.0
10:54:43 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:43 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:43 DEBUG opendrift.models.physics_methods:940: min: 0.041166, mean: 3.691104, max: 9.789998
10:54:43 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.041166, mean: 3.691104, max: 9.789998
10:54:43 DEBUG opendrift.models.basemodel:813: 586 elements hit coastline, moving back to water
10:54:43 DEBUG opendrift.models.basemodel:836: Lifting 95 elements to seafloor.
10:54:43 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:43 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:43 DEBUG opendrift.models.physics_methods:741: Advecting 41 of 4861 elements above 0.100m with wind-sheared ocean current (0.002875 m/s - 0.192712 m/s)
10:54:43 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:43 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:43 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.1185994022093582
10:54:43 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:43 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:43 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:43 DEBUG opendrift.models.oceandrift:572: 599 elements penetrated seafloor, lifting up
10:54:43 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:54:43 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:54:43 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:54:43 DEBUG opendrift.models.oceandrift:572: 469 elements penetrated seafloor, lifting up
10:54:43 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:54:43 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:54:43 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:54:43 DEBUG opendrift.models.oceandrift:572: 460 elements penetrated seafloor, lifting up
10:54:43 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:54:43 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:54:43 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:54:43 DEBUG opendrift.models.oceandrift:572: 406 elements penetrated seafloor, lifting up
10:54:43 DEBUG opendrift.models.oceandrift:590: 54 elements reached seafloor, set to bottom
10:54:43 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
10:54:43 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
10:54:43 DEBUG opendrift.models.oceandrift:572: 400 elements penetrated seafloor, lifting up
10:54:43 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:54:43 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:54:43 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:54:43 DEBUG opendrift.models.oceandrift:572: 386 elements penetrated seafloor, lifting up
10:54:43 DEBUG opendrift.models.oceandrift:590: 40 elements reached seafloor, set to bottom
10:54:43 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
10:54:43 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
10:54:43 DEBUG opendrift.models.oceandrift:572: 407 elements penetrated seafloor, lifting up
10:54:43 DEBUG opendrift.models.oceandrift:590: 29 elements reached seafloor, set to bottom
10:54:43 DEBUG opendrift.models.basemodel:836: Lifting 29 elements to seafloor.
10:54:43 DEBUG opendrift.models.sedimentdrift:112: Settling 29 elements at seafloor
10:54:43 DEBUG opendrift.models.oceandrift:572: 402 elements penetrated seafloor, lifting up
10:54:43 DEBUG opendrift.models.oceandrift:590: 40 elements reached seafloor, set to bottom
10:54:43 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
10:54:43 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
10:54:43 DEBUG opendrift.models.oceandrift:572: 349 elements penetrated seafloor, lifting up
10:54:43 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:54:43 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:54:43 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:54:43 DEBUG opendrift.models.oceandrift:572: 351 elements penetrated seafloor, lifting up
10:54:43 DEBUG opendrift.models.oceandrift:590: 43 elements reached seafloor, set to bottom
10:54:43 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
10:54:43 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
10:54:43 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:43 DEBUG opendrift.models.basemodel:2945: 4861 active elements (0 deactivated)
10:54:43 DEBUG opendrift.models.basemodel:1658: to be seeded: 5139, already seeded 4861
10:54:43 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:43 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:43 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:43 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:43 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:43 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:43 DEBUG opendrift.models.basemodel:1253: Data needed for 4896 elements
10:54:43 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:43 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 10:00:00 (before)
2023-08-22 11:00:00 (after)
10:54:43 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 10:00:00) in space (linearNDFast)
10:54:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:43 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:43 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:43 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:43 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:43 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:43 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 22.0842 (max)
10:54:43 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:43 DEBUG opendrift.models.basemodel:1527: 4896 active elements
10:54:43 DEBUG opendrift.models.basemodel:1538: 59.09702515814798 <- latitude -> 59.189258806178714
10:54:43 DEBUG opendrift.models.basemodel:1543: 10.85926313537806 <- longitude -> 11.043786060360343
10:54:43 DEBUG opendrift.models.basemodel:1548: -16.431648981098977 <- z -> 0.0
10:54:43 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:43 DEBUG opendrift.models.basemodel:836: Lifting 295 elements to seafloor.
10:54:43 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:43 INFO opendrift.models.basemodel:2882: 2023-08-22 10:12:19.552469 - step 141 of 216 - 4896 active elements (0 deactivated)
10:54:43 DEBUG opendrift.models.basemodel:2888: 5104 elements scheduled.
10:54:43 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:43 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:43 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:43 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:43 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:43 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:43 DEBUG opendrift.models.basemodel:1253: Data needed for 4896 elements
10:54:43 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:43 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:43 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:43 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:43 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:43 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:43 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:43 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:43 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:43 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:43 DEBUG opendrift.models.basemodel:1253: Data needed for 4896 elements
10:54:43 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:43 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 10:00:00 (before)
2023-08-22 11:00:00 (after)
10:54:43 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:43 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:43 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:43 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:43 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:43 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:43 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x25x6) for time after (2023-08-22 11:00:00)
10:54:43 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 10:00:00) in space (linearNDFast)
10:54:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:43 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 11:00:00) in space (linearNDFast)
10:54:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2389 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2389 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2578 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 550 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2578 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 550 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2578 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 550 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2578 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 550 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2578 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 550 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2578 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 550 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 97 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3653 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1129 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3653 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1129 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3653 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1129 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3653 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1129 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3653 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1129 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3653 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1129 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2389 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2389 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2389 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2389 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2389 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2389 elements, expanding data 1
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 2
10:54:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:43 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 10:00:00, weight 0.79) and
after (2023-08-22 11:00:00, weight 0.21) in time
10:54:44 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.14074743652316 and -58.956224482455085 degrees.
10:54:44 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.14074743652316 and -58.956224482455085 degrees.
10:54:44 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:44 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:44 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:44 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:44 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:44 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:44 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.80052 (min) 1.08526 (max)
10:54:44 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.03503 (min) 0.834187 (max)
10:54:44 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000645445 (min) 0.000822975 (max)
10:54:44 DEBUG opendrift.models.basemodel:1524: x_wind: -4.73724 (min) 10.4509 (max)
10:54:44 DEBUG opendrift.models.basemodel:1524: y_wind: -4.77014 (min) 9.2648 (max)
10:54:44 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:44 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:44 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:44 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:44 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:44 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:44 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:44 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 22.0842 (max)
10:54:44 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:44 DEBUG opendrift.models.basemodel:1527: 4896 active elements
10:54:44 DEBUG opendrift.models.basemodel:1538: 59.09702515814798 <- latitude -> 59.189258806178714
10:54:44 DEBUG opendrift.models.basemodel:1543: 10.85926313537806 <- longitude -> 11.043786060360343
10:54:44 DEBUG opendrift.models.basemodel:1548: -16.431648981098977 <- z -> 0.0
10:54:44 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:44 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:44 DEBUG opendrift.models.physics_methods:940: min: 0.125687, mean: 3.724524, max: 9.073603
10:54:44 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.125687, mean: 3.724524, max: 9.073603
10:54:44 DEBUG opendrift.models.basemodel:813: 610 elements hit coastline, moving back to water
10:54:44 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:54:44 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:44 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:44 DEBUG opendrift.models.physics_methods:741: Advecting 41 of 4896 elements above 0.100m with wind-sheared ocean current (0.001863 m/s - 0.194100 m/s)
10:54:44 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:44 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:44 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.10187773397071838
10:54:44 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:44 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:44 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:44 DEBUG opendrift.models.oceandrift:572: 575 elements penetrated seafloor, lifting up
10:54:44 DEBUG opendrift.models.oceandrift:590: 63 elements reached seafloor, set to bottom
10:54:44 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
10:54:44 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
10:54:44 DEBUG opendrift.models.oceandrift:572: 452 elements penetrated seafloor, lifting up
10:54:44 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:54:44 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:54:44 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:54:44 DEBUG opendrift.models.oceandrift:572: 479 elements penetrated seafloor, lifting up
10:54:44 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:54:44 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:54:44 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:54:44 DEBUG opendrift.models.oceandrift:572: 422 elements penetrated seafloor, lifting up
10:54:44 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:54:44 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:54:44 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:54:44 DEBUG opendrift.models.oceandrift:572: 443 elements penetrated seafloor, lifting up
10:54:44 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:54:44 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:54:44 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:54:44 DEBUG opendrift.models.oceandrift:572: 401 elements penetrated seafloor, lifting up
10:54:44 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:54:44 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:54:44 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:54:44 DEBUG opendrift.models.oceandrift:572: 383 elements penetrated seafloor, lifting up
10:54:44 DEBUG opendrift.models.oceandrift:590: 43 elements reached seafloor, set to bottom
10:54:44 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
10:54:44 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
10:54:44 DEBUG opendrift.models.oceandrift:572: 400 elements penetrated seafloor, lifting up
10:54:44 DEBUG opendrift.models.oceandrift:590: 40 elements reached seafloor, set to bottom
10:54:44 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
10:54:44 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
10:54:44 DEBUG opendrift.models.oceandrift:572: 365 elements penetrated seafloor, lifting up
10:54:44 DEBUG opendrift.models.oceandrift:590: 36 elements reached seafloor, set to bottom
10:54:44 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
10:54:44 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
10:54:44 DEBUG opendrift.models.oceandrift:572: 371 elements penetrated seafloor, lifting up
10:54:44 DEBUG opendrift.models.oceandrift:590: 35 elements reached seafloor, set to bottom
10:54:44 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
10:54:44 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
10:54:44 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:44 DEBUG opendrift.models.basemodel:2945: 4896 active elements (0 deactivated)
10:54:44 DEBUG opendrift.models.basemodel:1658: to be seeded: 5104, already seeded 4896
10:54:44 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:44 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:44 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:44 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:44 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:44 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:44 DEBUG opendrift.models.basemodel:1253: Data needed for 4931 elements
10:54:44 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:44 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 10:00:00 (before)
2023-08-22 11:00:00 (after)
10:54:44 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 10:00:00) in space (linearNDFast)
10:54:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:44 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:44 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:44 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:44 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:44 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:44 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 22.7059 (max)
10:54:44 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:44 DEBUG opendrift.models.basemodel:1527: 4931 active elements
10:54:44 DEBUG opendrift.models.basemodel:1538: 59.09537602933354 <- latitude -> 59.189216568180925
10:54:44 DEBUG opendrift.models.basemodel:1543: 10.857872828246764 <- longitude -> 11.041874559470818
10:54:44 DEBUG opendrift.models.basemodel:1548: -17.62380702742449 <- z -> 0.0
10:54:44 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:44 DEBUG opendrift.models.basemodel:836: Lifting 315 elements to seafloor.
10:54:44 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:44 INFO opendrift.models.basemodel:2882: 2023-08-22 10:22:19.552469 - step 142 of 216 - 4931 active elements (0 deactivated)
10:54:44 DEBUG opendrift.models.basemodel:2888: 5069 elements scheduled.
10:54:44 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:44 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:44 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:44 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:44 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:44 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:44 DEBUG opendrift.models.basemodel:1253: Data needed for 4931 elements
10:54:44 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:44 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:44 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:44 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:44 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:44 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:44 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:44 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:44 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:44 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:44 DEBUG opendrift.models.basemodel:1253: Data needed for 4931 elements
10:54:44 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:44 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 10:00:00 (before)
2023-08-22 11:00:00 (after)
10:54:44 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:44 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:44 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:44 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:44 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:44 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:44 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 26x25x6) for time after (2023-08-22 11:00:00)
10:54:44 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 10:00:00) in space (linearNDFast)
10:54:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:44 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 11:00:00) in space (linearNDFast)
10:54:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2420 elements, expanding data 1
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 110 elements, expanding data 2
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2420 elements, expanding data 1
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 110 elements, expanding data 2
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2612 elements, expanding data 1
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 552 elements, expanding data 2
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 3
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2612 elements, expanding data 1
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 552 elements, expanding data 2
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 3
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2612 elements, expanding data 1
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 552 elements, expanding data 2
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 3
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2612 elements, expanding data 1
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 552 elements, expanding data 2
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 3
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2612 elements, expanding data 1
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 552 elements, expanding data 2
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 3
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2612 elements, expanding data 1
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 552 elements, expanding data 2
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 3
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3684 elements, expanding data 1
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1135 elements, expanding data 2
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3684 elements, expanding data 1
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1135 elements, expanding data 2
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3684 elements, expanding data 1
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1135 elements, expanding data 2
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3684 elements, expanding data 1
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1135 elements, expanding data 2
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3684 elements, expanding data 1
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1135 elements, expanding data 2
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3684 elements, expanding data 1
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1135 elements, expanding data 2
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2420 elements, expanding data 1
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 110 elements, expanding data 2
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2420 elements, expanding data 1
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 110 elements, expanding data 2
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2420 elements, expanding data 1
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 110 elements, expanding data 2
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2420 elements, expanding data 1
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 110 elements, expanding data 2
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2420 elements, expanding data 1
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 110 elements, expanding data 2
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2420 elements, expanding data 1
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 110 elements, expanding data 2
10:54:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:44 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 10:00:00, weight 0.63) and
after (2023-08-22 11:00:00, weight 0.37) in time
10:54:44 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.142137752981995 and -58.9581359886867 degrees.
10:54:44 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.142137752981995 and -58.9581359886867 degrees.
10:54:44 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:44 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:44 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:44 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:44 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:44 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:44 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.849799 (min) 1.05216 (max)
10:54:44 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.06008 (min) 0.836546 (max)
10:54:44 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000591591 (min) 0.000756907 (max)
10:54:44 DEBUG opendrift.models.basemodel:1524: x_wind: -4.83901 (min) 10.101 (max)
10:54:44 DEBUG opendrift.models.basemodel:1524: y_wind: -5.04158 (min) 9.73427 (max)
10:54:44 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:44 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:44 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:44 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:44 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:44 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:44 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:44 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 22.7059 (max)
10:54:44 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:44 DEBUG opendrift.models.basemodel:1527: 4931 active elements
10:54:44 DEBUG opendrift.models.basemodel:1538: 59.09537602933354 <- latitude -> 59.189216568180925
10:54:44 DEBUG opendrift.models.basemodel:1543: 10.857872828246764 <- longitude -> 11.041874559470818
10:54:44 DEBUG opendrift.models.basemodel:1548: -17.62380702742449 <- z -> 0.0
10:54:44 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:44 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:44 DEBUG opendrift.models.physics_methods:940: min: 0.052034, mean: 3.770675, max: 9.735957
10:54:44 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.052034, mean: 3.770675, max: 9.735957
10:54:44 DEBUG opendrift.models.basemodel:813: 608 elements hit coastline, moving back to water
10:54:44 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
10:54:44 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:44 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:44 DEBUG opendrift.models.physics_methods:741: Advecting 38 of 4931 elements above 0.100m with wind-sheared ocean current (0.001345 m/s - 0.145675 m/s)
10:54:44 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:44 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:44 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.11729373443801878
10:54:44 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:44 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:44 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:44 DEBUG opendrift.models.oceandrift:572: 594 elements penetrated seafloor, lifting up
10:54:44 DEBUG opendrift.models.oceandrift:590: 65 elements reached seafloor, set to bottom
10:54:44 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
10:54:44 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
10:54:44 DEBUG opendrift.models.oceandrift:572: 483 elements penetrated seafloor, lifting up
10:54:44 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:54:44 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:54:44 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:54:44 DEBUG opendrift.models.oceandrift:572: 455 elements penetrated seafloor, lifting up
10:54:44 DEBUG opendrift.models.oceandrift:590: 67 elements reached seafloor, set to bottom
10:54:44 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
10:54:44 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
10:54:45 DEBUG opendrift.models.oceandrift:572: 447 elements penetrated seafloor, lifting up
10:54:45 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:54:45 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:54:45 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:54:45 DEBUG opendrift.models.oceandrift:572: 393 elements penetrated seafloor, lifting up
10:54:45 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:54:45 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:54:45 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:54:45 DEBUG opendrift.models.oceandrift:572: 372 elements penetrated seafloor, lifting up
10:54:45 DEBUG opendrift.models.oceandrift:590: 53 elements reached seafloor, set to bottom
10:54:45 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
10:54:45 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
10:54:45 DEBUG opendrift.models.oceandrift:572: 390 elements penetrated seafloor, lifting up
10:54:45 DEBUG opendrift.models.oceandrift:590: 44 elements reached seafloor, set to bottom
10:54:45 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
10:54:45 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
10:54:45 DEBUG opendrift.models.oceandrift:572: 373 elements penetrated seafloor, lifting up
10:54:45 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:54:45 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:54:45 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:54:45 DEBUG opendrift.models.oceandrift:572: 375 elements penetrated seafloor, lifting up
10:54:45 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:54:45 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:54:45 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:54:45 DEBUG opendrift.models.oceandrift:572: 389 elements penetrated seafloor, lifting up
10:54:45 DEBUG opendrift.models.oceandrift:590: 40 elements reached seafloor, set to bottom
10:54:45 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
10:54:45 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
10:54:45 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:45 DEBUG opendrift.models.basemodel:2945: 4931 active elements (0 deactivated)
10:54:45 DEBUG opendrift.models.basemodel:1658: to be seeded: 5069, already seeded 4931
10:54:45 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:54:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:45 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:45 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:45 DEBUG opendrift.models.basemodel:1253: Data needed for 4965 elements
10:54:45 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:45 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 10:00:00 (before)
2023-08-22 11:00:00 (after)
10:54:45 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 10:00:00) in space (linearNDFast)
10:54:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:45 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:45 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:45 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:45 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:45 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 21.2444 (max)
10:54:45 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:45 DEBUG opendrift.models.basemodel:1527: 4965 active elements
10:54:45 DEBUG opendrift.models.basemodel:1538: 59.09562357795039 <- latitude -> 59.19044870174794
10:54:45 DEBUG opendrift.models.basemodel:1543: 10.860302780880188 <- longitude -> 11.041339565338111
10:54:45 DEBUG opendrift.models.basemodel:1548: -18.171346566321827 <- z -> 0.0
10:54:45 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:45 DEBUG opendrift.models.basemodel:836: Lifting 322 elements to seafloor.
10:54:45 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:45 INFO opendrift.models.basemodel:2882: 2023-08-22 10:32:19.552469 - step 143 of 216 - 4965 active elements (0 deactivated)
10:54:45 DEBUG opendrift.models.basemodel:2888: 5035 elements scheduled.
10:54:45 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:45 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:45 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:45 DEBUG opendrift.models.basemodel:1253: Data needed for 4965 elements
10:54:45 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:45 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:45 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:45 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:45 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:45 DEBUG opendrift.models.basemodel:1253: Data needed for 4965 elements
10:54:45 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:45 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 10:00:00 (before)
2023-08-22 11:00:00 (after)
10:54:45 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:45 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:45 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:45 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:45 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:45 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:45 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x25x6) for time after (2023-08-22 11:00:00)
10:54:45 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 10:00:00) in space (linearNDFast)
10:54:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:45 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 11:00:00) in space (linearNDFast)
10:54:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2443 elements, expanding data 1
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 2
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2443 elements, expanding data 1
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 2
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2643 elements, expanding data 1
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 557 elements, expanding data 2
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 3
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2643 elements, expanding data 1
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 557 elements, expanding data 2
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 3
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2643 elements, expanding data 1
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 557 elements, expanding data 2
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 3
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2643 elements, expanding data 1
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 557 elements, expanding data 2
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 3
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2643 elements, expanding data 1
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 557 elements, expanding data 2
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 3
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2643 elements, expanding data 1
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 557 elements, expanding data 2
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 102 elements, expanding data 3
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3725 elements, expanding data 1
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1140 elements, expanding data 2
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3725 elements, expanding data 1
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1140 elements, expanding data 2
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3725 elements, expanding data 1
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1140 elements, expanding data 2
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3725 elements, expanding data 1
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1140 elements, expanding data 2
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3725 elements, expanding data 1
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1140 elements, expanding data 2
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3725 elements, expanding data 1
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1140 elements, expanding data 2
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2443 elements, expanding data 1
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 2
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2443 elements, expanding data 1
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 2
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2443 elements, expanding data 1
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 2
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2443 elements, expanding data 1
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 2
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2443 elements, expanding data 1
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 2
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2443 elements, expanding data 1
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 108 elements, expanding data 2
10:54:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:45 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 10:00:00, weight 0.46) and
after (2023-08-22 11:00:00, weight 0.54) in time
10:54:45 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.1397077897884 and -58.958670977676015 degrees.
10:54:45 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.1397077897884 and -58.958670977676015 degrees.
10:54:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:45 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:45 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:45 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:45 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:45 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:45 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.768361 (min) 0.985231 (max)
10:54:45 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.07754 (min) 0.904047 (max)
10:54:45 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000619202 (min) 0.000608149 (max)
10:54:45 DEBUG opendrift.models.basemodel:1524: x_wind: -5.04805 (min) 10.1578 (max)
10:54:45 DEBUG opendrift.models.basemodel:1524: y_wind: -4.40531 (min) 10.1274 (max)
10:54:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:45 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:45 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:45 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:45 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 21.2444 (max)
10:54:45 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:45 DEBUG opendrift.models.basemodel:1527: 4965 active elements
10:54:45 DEBUG opendrift.models.basemodel:1538: 59.09562357795039 <- latitude -> 59.19044870174794
10:54:45 DEBUG opendrift.models.basemodel:1543: 10.860302780880188 <- longitude -> 11.041339565338111
10:54:45 DEBUG opendrift.models.basemodel:1548: -18.171346566321827 <- z -> 0.0
10:54:45 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:45 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:45 DEBUG opendrift.models.physics_methods:940: min: 0.124530, mean: 3.800569, max: 9.754432
10:54:45 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.124530, mean: 3.800569, max: 9.754432
10:54:45 DEBUG opendrift.models.basemodel:813: 598 elements hit coastline, moving back to water
10:54:45 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:54:45 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:45 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:45 DEBUG opendrift.models.physics_methods:741: Advecting 38 of 4965 elements above 0.100m with wind-sheared ocean current (0.004095 m/s - 0.182819 m/s)
10:54:45 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:45 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:45 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.11773928542144775
10:54:45 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:45 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:45 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:45 DEBUG opendrift.models.oceandrift:572: 579 elements penetrated seafloor, lifting up
10:54:45 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:54:45 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:54:45 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:54:45 DEBUG opendrift.models.oceandrift:572: 434 elements penetrated seafloor, lifting up
10:54:45 DEBUG opendrift.models.oceandrift:590: 53 elements reached seafloor, set to bottom
10:54:45 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
10:54:45 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
10:54:45 DEBUG opendrift.models.oceandrift:572: 447 elements penetrated seafloor, lifting up
10:54:45 DEBUG opendrift.models.oceandrift:590: 40 elements reached seafloor, set to bottom
10:54:45 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
10:54:45 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
10:54:45 DEBUG opendrift.models.oceandrift:572: 424 elements penetrated seafloor, lifting up
10:54:45 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:54:45 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:54:45 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:54:45 DEBUG opendrift.models.oceandrift:572: 409 elements penetrated seafloor, lifting up
10:54:45 DEBUG opendrift.models.oceandrift:590: 44 elements reached seafloor, set to bottom
10:54:45 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
10:54:45 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
10:54:45 DEBUG opendrift.models.oceandrift:572: 396 elements penetrated seafloor, lifting up
10:54:45 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:54:45 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:54:45 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:54:45 DEBUG opendrift.models.oceandrift:572: 407 elements penetrated seafloor, lifting up
10:54:45 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:54:45 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:54:45 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:54:45 DEBUG opendrift.models.oceandrift:572: 364 elements penetrated seafloor, lifting up
10:54:45 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:54:45 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:54:45 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:54:45 DEBUG opendrift.models.oceandrift:572: 364 elements penetrated seafloor, lifting up
10:54:45 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:54:45 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:54:45 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:54:45 DEBUG opendrift.models.oceandrift:572: 341 elements penetrated seafloor, lifting up
10:54:45 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:54:45 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:54:45 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:54:45 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:45 DEBUG opendrift.models.basemodel:2945: 4965 active elements (0 deactivated)
10:54:45 DEBUG opendrift.models.basemodel:1658: to be seeded: 5035, already seeded 4965
10:54:45 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:45 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:45 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:45 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
10:54:45 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:45 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 10:00:00 (before)
2023-08-22 11:00:00 (after)
10:54:45 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 10:00:00) in space (linearNDFast)
10:54:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:45 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:45 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:45 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:45 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:45 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 22.0884 (max)
10:54:45 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:45 DEBUG opendrift.models.basemodel:1527: 5000 active elements
10:54:45 DEBUG opendrift.models.basemodel:1538: 59.096629404192015 <- latitude -> 59.18940021054928
10:54:45 DEBUG opendrift.models.basemodel:1543: 10.857983259713516 <- longitude -> 11.042847843835213
10:54:45 DEBUG opendrift.models.basemodel:1548: -18.240297445924195 <- z -> 0.0
10:54:45 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:45 DEBUG opendrift.models.basemodel:836: Lifting 284 elements to seafloor.
10:54:45 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:45 INFO opendrift.models.basemodel:2882: 2023-08-22 10:42:19.552469 - step 144 of 216 - 5000 active elements (0 deactivated)
10:54:45 DEBUG opendrift.models.basemodel:2888: 5000 elements scheduled.
10:54:45 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:45 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:45 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:45 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
10:54:45 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:45 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:45 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:45 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:45 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:45 DEBUG opendrift.models.basemodel:1253: Data needed for 5000 elements
10:54:45 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:45 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 10:00:00 (before)
2023-08-22 11:00:00 (after)
10:54:46 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:46 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:46 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:46 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:46 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:46 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:46 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x25x6) for time after (2023-08-22 11:00:00)
10:54:46 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 10:00:00) in space (linearNDFast)
10:54:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:46 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 11:00:00) in space (linearNDFast)
10:54:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2501 elements, expanding data 1
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 114 elements, expanding data 2
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2501 elements, expanding data 1
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 114 elements, expanding data 2
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2703 elements, expanding data 1
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 562 elements, expanding data 2
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 105 elements, expanding data 3
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2703 elements, expanding data 1
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 562 elements, expanding data 2
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 105 elements, expanding data 3
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2703 elements, expanding data 1
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 562 elements, expanding data 2
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 105 elements, expanding data 3
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2703 elements, expanding data 1
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 562 elements, expanding data 2
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 105 elements, expanding data 3
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2703 elements, expanding data 1
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 562 elements, expanding data 2
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 105 elements, expanding data 3
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2703 elements, expanding data 1
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 562 elements, expanding data 2
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 105 elements, expanding data 3
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3787 elements, expanding data 1
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1161 elements, expanding data 2
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3787 elements, expanding data 1
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1161 elements, expanding data 2
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3787 elements, expanding data 1
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1161 elements, expanding data 2
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3787 elements, expanding data 1
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1161 elements, expanding data 2
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3787 elements, expanding data 1
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1161 elements, expanding data 2
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3787 elements, expanding data 1
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1161 elements, expanding data 2
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2501 elements, expanding data 1
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 114 elements, expanding data 2
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2501 elements, expanding data 1
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 114 elements, expanding data 2
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2501 elements, expanding data 1
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 114 elements, expanding data 2
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2501 elements, expanding data 1
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 114 elements, expanding data 2
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2501 elements, expanding data 1
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 114 elements, expanding data 2
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2501 elements, expanding data 1
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 114 elements, expanding data 2
10:54:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:46 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 10:00:00, weight 0.29) and
after (2023-08-22 11:00:00, weight 0.71) in time
10:54:46 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.14202732281729 and -58.95716269524129 degrees.
10:54:46 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.14202732281729 and -58.95716269524129 degrees.
10:54:46 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:46 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:46 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:46 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:46 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:46 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:46 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.722769 (min) 1.04381 (max)
10:54:46 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.02961 (min) 0.759714 (max)
10:54:46 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.00061249 (min) 0.000678693 (max)
10:54:46 DEBUG opendrift.models.basemodel:1524: x_wind: -4.33785 (min) 9.7107 (max)
10:54:46 DEBUG opendrift.models.basemodel:1524: y_wind: -4.26869 (min) 10.5669 (max)
10:54:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:46 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:46 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:46 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:46 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 22.0884 (max)
10:54:46 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:46 DEBUG opendrift.models.basemodel:1527: 5000 active elements
10:54:46 DEBUG opendrift.models.basemodel:1538: 59.096629404192015 <- latitude -> 59.18940021054928
10:54:46 DEBUG opendrift.models.basemodel:1543: 10.857983259713516 <- longitude -> 11.042847843835213
10:54:46 DEBUG opendrift.models.basemodel:1548: -18.240297445924195 <- z -> 0.0
10:54:46 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:46 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:46 DEBUG opendrift.models.physics_methods:940: min: 0.086485, mean: 3.859335, max: 9.479357
10:54:46 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.086485, mean: 3.859335, max: 9.479357
10:54:46 DEBUG opendrift.models.basemodel:813: 630 elements hit coastline, moving back to water
10:54:46 DEBUG opendrift.models.basemodel:836: Lifting 98 elements to seafloor.
10:54:46 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:46 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:46 DEBUG opendrift.models.physics_methods:741: Advecting 37 of 5000 elements above 0.100m with wind-sheared ocean current (0.003758 m/s - 0.144270 m/s)
10:54:46 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:46 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:46 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.11119263794334411
10:54:46 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:46 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:46 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:46 DEBUG opendrift.models.oceandrift:572: 587 elements penetrated seafloor, lifting up
10:54:46 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:54:46 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:54:46 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:54:46 DEBUG opendrift.models.oceandrift:572: 517 elements penetrated seafloor, lifting up
10:54:46 DEBUG opendrift.models.oceandrift:590: 53 elements reached seafloor, set to bottom
10:54:46 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
10:54:46 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
10:54:46 DEBUG opendrift.models.oceandrift:572: 481 elements penetrated seafloor, lifting up
10:54:46 DEBUG opendrift.models.oceandrift:590: 63 elements reached seafloor, set to bottom
10:54:46 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
10:54:46 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
10:54:46 DEBUG opendrift.models.oceandrift:572: 413 elements penetrated seafloor, lifting up
10:54:46 DEBUG opendrift.models.oceandrift:590: 43 elements reached seafloor, set to bottom
10:54:46 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
10:54:46 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
10:54:46 DEBUG opendrift.models.oceandrift:572: 416 elements penetrated seafloor, lifting up
10:54:46 DEBUG opendrift.models.oceandrift:590: 54 elements reached seafloor, set to bottom
10:54:46 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
10:54:46 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
10:54:46 DEBUG opendrift.models.oceandrift:572: 399 elements penetrated seafloor, lifting up
10:54:46 DEBUG opendrift.models.oceandrift:590: 36 elements reached seafloor, set to bottom
10:54:46 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
10:54:46 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
10:54:46 DEBUG opendrift.models.oceandrift:572: 386 elements penetrated seafloor, lifting up
10:54:46 DEBUG opendrift.models.oceandrift:590: 40 elements reached seafloor, set to bottom
10:54:46 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
10:54:46 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
10:54:46 DEBUG opendrift.models.oceandrift:572: 398 elements penetrated seafloor, lifting up
10:54:46 DEBUG opendrift.models.oceandrift:590: 40 elements reached seafloor, set to bottom
10:54:46 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
10:54:46 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
10:54:46 DEBUG opendrift.models.oceandrift:572: 380 elements penetrated seafloor, lifting up
10:54:46 DEBUG opendrift.models.oceandrift:590: 42 elements reached seafloor, set to bottom
10:54:46 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
10:54:46 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
10:54:46 DEBUG opendrift.models.oceandrift:572: 376 elements penetrated seafloor, lifting up
10:54:46 DEBUG opendrift.models.oceandrift:590: 36 elements reached seafloor, set to bottom
10:54:46 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
10:54:46 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
10:54:46 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:46 DEBUG opendrift.models.basemodel:2945: 5000 active elements (0 deactivated)
10:54:46 DEBUG opendrift.models.basemodel:1658: to be seeded: 5000, already seeded 5000
10:54:46 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:46 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:46 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:46 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:46 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:46 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:46 DEBUG opendrift.models.basemodel:1253: Data needed for 5035 elements
10:54:46 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:46 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 10:00:00 (before)
2023-08-22 11:00:00 (after)
10:54:46 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 10:00:00) in space (linearNDFast)
10:54:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:46 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:46 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:46 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:46 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:46 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:46 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 23.1046 (max)
10:54:46 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:46 DEBUG opendrift.models.basemodel:1527: 5035 active elements
10:54:46 DEBUG opendrift.models.basemodel:1538: 59.096815697068905 <- latitude -> 59.18981698267109
10:54:46 DEBUG opendrift.models.basemodel:1543: 10.854929601239165 <- longitude -> 11.039135201756162
10:54:46 DEBUG opendrift.models.basemodel:1548: -19.381252336133866 <- z -> 0.0
10:54:46 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:46 DEBUG opendrift.models.basemodel:836: Lifting 310 elements to seafloor.
10:54:46 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:46 INFO opendrift.models.basemodel:2882: 2023-08-22 10:52:19.552469 - step 145 of 216 - 5035 active elements (0 deactivated)
10:54:46 DEBUG opendrift.models.basemodel:2888: 4965 elements scheduled.
10:54:46 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:46 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:46 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:46 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:46 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:46 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:46 DEBUG opendrift.models.basemodel:1253: Data needed for 5035 elements
10:54:46 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:46 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:46 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:46 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:46 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:46 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:46 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:46 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:46 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:46 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:46 DEBUG opendrift.models.basemodel:1253: Data needed for 5035 elements
10:54:46 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:46 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 10:00:00 (before)
2023-08-22 11:00:00 (after)
10:54:47 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:47 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:47 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:47 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:47 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:47 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:47 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x25x6) for time after (2023-08-22 11:00:00)
10:54:47 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 10:00:00) in space (linearNDFast)
10:54:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:47 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 11:00:00) in space (linearNDFast)
10:54:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2493 elements, expanding data 1
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2493 elements, expanding data 1
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2714 elements, expanding data 1
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 571 elements, expanding data 2
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 3
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2714 elements, expanding data 1
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 571 elements, expanding data 2
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 3
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2714 elements, expanding data 1
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 571 elements, expanding data 2
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 3
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2714 elements, expanding data 1
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 571 elements, expanding data 2
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 3
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2714 elements, expanding data 1
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 571 elements, expanding data 2
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 3
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2714 elements, expanding data 1
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 571 elements, expanding data 2
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 3
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3807 elements, expanding data 1
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1187 elements, expanding data 2
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3807 elements, expanding data 1
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1187 elements, expanding data 2
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3807 elements, expanding data 1
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1187 elements, expanding data 2
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3807 elements, expanding data 1
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1187 elements, expanding data 2
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3807 elements, expanding data 1
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1187 elements, expanding data 2
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3807 elements, expanding data 1
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1187 elements, expanding data 2
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2493 elements, expanding data 1
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2493 elements, expanding data 1
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2493 elements, expanding data 1
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2493 elements, expanding data 1
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2493 elements, expanding data 1
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2493 elements, expanding data 1
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:47 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 10:00:00, weight 0.13) and
after (2023-08-22 11:00:00, weight 0.87) in time
10:54:47 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.14508095645945 and -58.960875348974476 degrees.
10:54:47 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.14508095645945 and -58.960875348974476 degrees.
10:54:47 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:47 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:47 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:47 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:47 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:47 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:47 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.822317 (min) 0.998427 (max)
10:54:47 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.928278 (min) 0.784105 (max)
10:54:47 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000560923 (min) 0.00069303 (max)
10:54:47 DEBUG opendrift.models.basemodel:1524: x_wind: -4.77679 (min) 10.3385 (max)
10:54:47 DEBUG opendrift.models.basemodel:1524: y_wind: -4.8331 (min) 10.13 (max)
10:54:47 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:47 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:47 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:47 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:47 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:47 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:47 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:47 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 23.1046 (max)
10:54:47 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:47 DEBUG opendrift.models.basemodel:1527: 5035 active elements
10:54:47 DEBUG opendrift.models.basemodel:1538: 59.096815697068905 <- latitude -> 59.18981698267109
10:54:47 DEBUG opendrift.models.basemodel:1543: 10.854929601239165 <- longitude -> 11.039135201756162
10:54:47 DEBUG opendrift.models.basemodel:1548: -19.381252336133866 <- z -> 0.0
10:54:47 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:47 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:47 DEBUG opendrift.models.physics_methods:940: min: 0.040209, mean: 3.942072, max: 9.649168
10:54:47 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.040209, mean: 3.942072, max: 9.649168
10:54:47 DEBUG opendrift.models.basemodel:813: 673 elements hit coastline, moving back to water
10:54:47 DEBUG opendrift.models.basemodel:836: Lifting 7 elements to seafloor.
10:54:47 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:47 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:47 DEBUG opendrift.models.physics_methods:741: Advecting 38 of 5035 elements above 0.100m with wind-sheared ocean current (0.012318 m/s - 0.159710 m/s)
10:54:47 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:47 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:47 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.11521191883094786
10:54:47 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:47 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:47 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:47 DEBUG opendrift.models.oceandrift:572: 620 elements penetrated seafloor, lifting up
10:54:47 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:54:47 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:54:47 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:54:47 DEBUG opendrift.models.oceandrift:572: 496 elements penetrated seafloor, lifting up
10:54:47 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:54:47 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:54:47 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:54:47 DEBUG opendrift.models.oceandrift:572: 483 elements penetrated seafloor, lifting up
10:54:47 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:54:47 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:54:47 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:54:47 DEBUG opendrift.models.oceandrift:572: 450 elements penetrated seafloor, lifting up
10:54:47 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:54:47 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:54:47 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:54:47 DEBUG opendrift.models.oceandrift:572: 435 elements penetrated seafloor, lifting up
10:54:47 DEBUG opendrift.models.oceandrift:590: 44 elements reached seafloor, set to bottom
10:54:47 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
10:54:47 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
10:54:47 DEBUG opendrift.models.oceandrift:572: 427 elements penetrated seafloor, lifting up
10:54:47 DEBUG opendrift.models.oceandrift:590: 39 elements reached seafloor, set to bottom
10:54:47 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
10:54:47 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
10:54:47 DEBUG opendrift.models.oceandrift:572: 432 elements penetrated seafloor, lifting up
10:54:47 DEBUG opendrift.models.oceandrift:590: 60 elements reached seafloor, set to bottom
10:54:47 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
10:54:47 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
10:54:47 DEBUG opendrift.models.oceandrift:572: 398 elements penetrated seafloor, lifting up
10:54:47 DEBUG opendrift.models.oceandrift:590: 43 elements reached seafloor, set to bottom
10:54:47 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
10:54:47 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
10:54:47 DEBUG opendrift.models.oceandrift:572: 385 elements penetrated seafloor, lifting up
10:54:47 DEBUG opendrift.models.oceandrift:590: 38 elements reached seafloor, set to bottom
10:54:47 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
10:54:47 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
10:54:47 DEBUG opendrift.models.oceandrift:572: 385 elements penetrated seafloor, lifting up
10:54:47 DEBUG opendrift.models.oceandrift:590: 43 elements reached seafloor, set to bottom
10:54:47 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
10:54:47 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
10:54:47 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:47 DEBUG opendrift.models.basemodel:2945: 5035 active elements (0 deactivated)
10:54:47 DEBUG opendrift.models.basemodel:1658: to be seeded: 4965, already seeded 5035
10:54:47 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:54:47 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:47 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:47 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:47 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:47 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:47 DEBUG opendrift.models.basemodel:1253: Data needed for 5069 elements
10:54:47 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:47 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 11:00:00 (before)
2023-08-22 12:00:00 (after)
10:54:47 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 11:00:00) in space (linearNDFast)
10:54:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
10:54:47 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:47 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:47 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:47 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:47 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:47 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 24.8686 (max)
10:54:47 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:47 DEBUG opendrift.models.basemodel:1527: 5069 active elements
10:54:47 DEBUG opendrift.models.basemodel:1538: 59.09679345964251 <- latitude -> 59.189273361338394
10:54:47 DEBUG opendrift.models.basemodel:1543: 10.852458776847982 <- longitude -> 11.042749108842777
10:54:47 DEBUG opendrift.models.basemodel:1548: -20.905078530184113 <- z -> 0.0
10:54:47 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:47 DEBUG opendrift.models.basemodel:836: Lifting 320 elements to seafloor.
10:54:47 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:47 INFO opendrift.models.basemodel:2882: 2023-08-22 11:02:19.552469 - step 146 of 216 - 5069 active elements (0 deactivated)
10:54:47 DEBUG opendrift.models.basemodel:2888: 4931 elements scheduled.
10:54:47 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:47 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:47 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:47 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:47 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:47 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:47 DEBUG opendrift.models.basemodel:1253: Data needed for 5069 elements
10:54:47 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:47 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:47 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:47 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:47 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:47 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:47 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:47 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:47 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:47 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:47 DEBUG opendrift.models.basemodel:1253: Data needed for 5069 elements
10:54:47 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:47 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 11:00:00 (before)
2023-08-22 12:00:00 (after)
10:54:49 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:49 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:49 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:49 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:49 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:49 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:49 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x25x6) for time after (2023-08-22 12:00:00)
10:54:49 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 11:00:00) in space (linearNDFast)
10:54:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:49 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 12:00:00) in space (linearNDFast)
10:54:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2556 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 114 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2556 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 114 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2759 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 584 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 110 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2759 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 584 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 110 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2759 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 584 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 110 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2759 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 584 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 110 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2759 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 584 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 110 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2759 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 584 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 110 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3856 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1206 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3856 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1206 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3856 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1206 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3856 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1206 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3856 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1206 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3856 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1206 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2556 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 114 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2556 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 114 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2556 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 114 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2556 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 114 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2556 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 114 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2556 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 114 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:49 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 11:00:00, weight 0.96) and
after (2023-08-22 12:00:00, weight 0.04) in time
10:54:49 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.14755179374161 and -58.95726142627344 degrees.
10:54:49 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.14755179374161 and -58.95726142627344 degrees.
10:54:49 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:49 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:49 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:49 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:49 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:49 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:49 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.756843 (min) 1.0189 (max)
10:54:49 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.97745 (min) 0.849787 (max)
10:54:49 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000510361 (min) 0.000463954 (max)
10:54:49 DEBUG opendrift.models.basemodel:1524: x_wind: -4.52041 (min) 10.0018 (max)
10:54:49 DEBUG opendrift.models.basemodel:1524: y_wind: -3.39126 (min) 10.5719 (max)
10:54:49 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:49 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:49 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:49 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:49 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:49 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:49 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:49 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 24.8686 (max)
10:54:49 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:49 DEBUG opendrift.models.basemodel:1527: 5069 active elements
10:54:49 DEBUG opendrift.models.basemodel:1538: 59.09679345964251 <- latitude -> 59.189273361338394
10:54:49 DEBUG opendrift.models.basemodel:1543: 10.852458776847982 <- longitude -> 11.042749108842777
10:54:49 DEBUG opendrift.models.basemodel:1548: -20.905078530184113 <- z -> 0.0
10:54:49 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:49 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:49 DEBUG opendrift.models.physics_methods:940: min: 0.089830, mean: 4.004869, max: 10.060277
10:54:49 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.089830, mean: 4.004869, max: 10.060277
10:54:49 DEBUG opendrift.models.basemodel:813: 667 elements hit coastline, moving back to water
10:54:49 DEBUG opendrift.models.basemodel:836: Lifting 87 elements to seafloor.
10:54:49 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:49 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:49 DEBUG opendrift.models.physics_methods:741: Advecting 43 of 5069 elements above 0.100m with wind-sheared ocean current (0.003515 m/s - 0.162726 m/s)
10:54:49 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:49 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:49 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.12523806066186902
10:54:49 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:49 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:49 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:49 DEBUG opendrift.models.oceandrift:572: 580 elements penetrated seafloor, lifting up
10:54:49 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:54:49 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:54:49 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:54:49 DEBUG opendrift.models.oceandrift:572: 440 elements penetrated seafloor, lifting up
10:54:49 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:54:49 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:54:49 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:54:49 DEBUG opendrift.models.oceandrift:572: 468 elements penetrated seafloor, lifting up
10:54:49 DEBUG opendrift.models.oceandrift:590: 54 elements reached seafloor, set to bottom
10:54:49 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
10:54:49 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
10:54:49 DEBUG opendrift.models.oceandrift:572: 468 elements penetrated seafloor, lifting up
10:54:49 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:54:49 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:54:49 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:54:49 DEBUG opendrift.models.oceandrift:572: 426 elements penetrated seafloor, lifting up
10:54:49 DEBUG opendrift.models.oceandrift:590: 39 elements reached seafloor, set to bottom
10:54:49 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
10:54:49 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
10:54:49 DEBUG opendrift.models.oceandrift:572: 404 elements penetrated seafloor, lifting up
10:54:49 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:54:49 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:54:49 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:54:49 DEBUG opendrift.models.oceandrift:572: 401 elements penetrated seafloor, lifting up
10:54:49 DEBUG opendrift.models.oceandrift:590: 41 elements reached seafloor, set to bottom
10:54:49 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
10:54:49 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
10:54:49 DEBUG opendrift.models.oceandrift:572: 417 elements penetrated seafloor, lifting up
10:54:49 DEBUG opendrift.models.oceandrift:590: 44 elements reached seafloor, set to bottom
10:54:49 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
10:54:49 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
10:54:49 DEBUG opendrift.models.oceandrift:572: 378 elements penetrated seafloor, lifting up
10:54:49 DEBUG opendrift.models.oceandrift:590: 44 elements reached seafloor, set to bottom
10:54:49 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
10:54:49 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
10:54:49 DEBUG opendrift.models.oceandrift:572: 366 elements penetrated seafloor, lifting up
10:54:49 DEBUG opendrift.models.oceandrift:590: 54 elements reached seafloor, set to bottom
10:54:49 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
10:54:49 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
10:54:49 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:49 DEBUG opendrift.models.basemodel:2945: 5069 active elements (0 deactivated)
10:54:49 DEBUG opendrift.models.basemodel:1658: to be seeded: 4931, already seeded 5069
10:54:49 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:49 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:49 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:49 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:49 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:49 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:49 DEBUG opendrift.models.basemodel:1253: Data needed for 5104 elements
10:54:49 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:49 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 11:00:00 (before)
2023-08-22 12:00:00 (after)
10:54:49 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 11:00:00) in space (linearNDFast)
10:54:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:49 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:49 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:49 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:49 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:49 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:49 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 25.3209 (max)
10:54:49 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:49 DEBUG opendrift.models.basemodel:1527: 5104 active elements
10:54:49 DEBUG opendrift.models.basemodel:1538: 59.096037995635136 <- latitude -> 59.1899201097025
10:54:49 DEBUG opendrift.models.basemodel:1543: 10.851768920302757 <- longitude -> 11.046685499125015
10:54:49 DEBUG opendrift.models.basemodel:1548: -18.531723077791238 <- z -> 0.0
10:54:49 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:49 DEBUG opendrift.models.basemodel:836: Lifting 300 elements to seafloor.
10:54:49 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:49 INFO opendrift.models.basemodel:2882: 2023-08-22 11:12:19.552469 - step 147 of 216 - 5104 active elements (0 deactivated)
10:54:49 DEBUG opendrift.models.basemodel:2888: 4896 elements scheduled.
10:54:49 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:49 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:49 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:49 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:49 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:49 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:49 DEBUG opendrift.models.basemodel:1253: Data needed for 5104 elements
10:54:49 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:49 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:49 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:49 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:49 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:49 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:49 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:49 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:49 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:49 DEBUG opendrift.models.basemodel:1253: Data needed for 5104 elements
10:54:49 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:49 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 11:00:00 (before)
2023-08-22 12:00:00 (after)
10:54:49 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:49 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:49 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:49 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:49 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:49 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:49 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x25x6) for time after (2023-08-22 12:00:00)
10:54:49 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 11:00:00) in space (linearNDFast)
10:54:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:49 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 12:00:00) in space (linearNDFast)
10:54:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2607 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2607 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2806 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 580 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 110 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2806 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 580 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 110 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2806 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 580 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 110 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2806 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 580 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 110 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2806 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 580 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 110 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2806 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 580 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 110 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3905 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1212 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3905 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1212 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3905 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1212 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3905 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1212 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3905 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1212 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3905 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1212 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2607 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2607 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2607 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2607 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2607 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2607 elements, expanding data 1
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
10:54:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:49 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 11:00:00, weight 0.79) and
after (2023-08-22 12:00:00, weight 0.21) in time
10:54:49 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.14824165170035 and -58.9533250438944 degrees.
10:54:49 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.14824165170035 and -58.9533250438944 degrees.
10:54:49 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:49 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:49 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:49 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:49 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:49 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:49 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.837403 (min) 1.1233 (max)
10:54:49 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.09223 (min) 0.987255 (max)
10:54:49 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000529981 (min) 0.000535422 (max)
10:54:49 DEBUG opendrift.models.basemodel:1524: x_wind: -4.054 (min) 9.58037 (max)
10:54:49 DEBUG opendrift.models.basemodel:1524: y_wind: -3.66148 (min) 10.5523 (max)
10:54:49 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:49 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:49 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:49 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:49 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:49 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:49 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:49 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 25.3209 (max)
10:54:49 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:49 DEBUG opendrift.models.basemodel:1527: 5104 active elements
10:54:49 DEBUG opendrift.models.basemodel:1538: 59.096037995635136 <- latitude -> 59.1899201097025
10:54:49 DEBUG opendrift.models.basemodel:1543: 10.851768920302757 <- longitude -> 11.046685499125015
10:54:49 DEBUG opendrift.models.basemodel:1548: -18.531723077791238 <- z -> 0.0
10:54:49 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:49 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:49 DEBUG opendrift.models.physics_methods:940: min: 0.076984, mean: 3.990666, max: 9.925167
10:54:49 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.076984, mean: 3.990666, max: 9.925167
10:54:49 DEBUG opendrift.models.basemodel:813: 651 elements hit coastline, moving back to water
10:54:49 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:54:49 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:49 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:49 DEBUG opendrift.models.physics_methods:741: Advecting 47 of 5104 elements above 0.100m with wind-sheared ocean current (0.000156 m/s - 0.166750 m/s)
10:54:49 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:49 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:49 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.12189688732583999
10:54:49 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:49 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:49 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:49 DEBUG opendrift.models.oceandrift:572: 565 elements penetrated seafloor, lifting up
10:54:49 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:54:49 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:54:49 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:54:49 DEBUG opendrift.models.oceandrift:572: 501 elements penetrated seafloor, lifting up
10:54:49 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:54:49 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:54:49 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:54:49 DEBUG opendrift.models.oceandrift:572: 453 elements penetrated seafloor, lifting up
10:54:49 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:54:49 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:54:49 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:54:49 DEBUG opendrift.models.oceandrift:572: 444 elements penetrated seafloor, lifting up
10:54:49 DEBUG opendrift.models.oceandrift:590: 68 elements reached seafloor, set to bottom
10:54:49 DEBUG opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
10:54:49 DEBUG opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
10:54:49 DEBUG opendrift.models.oceandrift:572: 420 elements penetrated seafloor, lifting up
10:54:49 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:54:49 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:54:49 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:54:49 DEBUG opendrift.models.oceandrift:572: 387 elements penetrated seafloor, lifting up
10:54:49 DEBUG opendrift.models.oceandrift:590: 42 elements reached seafloor, set to bottom
10:54:49 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
10:54:49 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
10:54:49 DEBUG opendrift.models.oceandrift:572: 430 elements penetrated seafloor, lifting up
10:54:49 DEBUG opendrift.models.oceandrift:590: 43 elements reached seafloor, set to bottom
10:54:49 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
10:54:49 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
10:54:49 DEBUG opendrift.models.oceandrift:572: 400 elements penetrated seafloor, lifting up
10:54:49 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:54:49 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:54:49 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:54:49 DEBUG opendrift.models.oceandrift:572: 404 elements penetrated seafloor, lifting up
10:54:49 DEBUG opendrift.models.oceandrift:590: 42 elements reached seafloor, set to bottom
10:54:49 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
10:54:49 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
10:54:49 DEBUG opendrift.models.oceandrift:572: 400 elements penetrated seafloor, lifting up
10:54:50 DEBUG opendrift.models.oceandrift:590: 43 elements reached seafloor, set to bottom
10:54:50 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
10:54:50 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
10:54:50 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:50 DEBUG opendrift.models.basemodel:2945: 5104 active elements (0 deactivated)
10:54:50 DEBUG opendrift.models.basemodel:1658: to be seeded: 4896, already seeded 5104
10:54:50 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:50 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:50 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:50 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:50 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:50 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:50 DEBUG opendrift.models.basemodel:1253: Data needed for 5139 elements
10:54:50 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:50 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 11:00:00 (before)
2023-08-22 12:00:00 (after)
10:54:50 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 11:00:00) in space (linearNDFast)
10:54:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:50 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:50 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:50 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:50 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:50 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:50 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 25.8482 (max)
10:54:50 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:50 DEBUG opendrift.models.basemodel:1527: 5139 active elements
10:54:50 DEBUG opendrift.models.basemodel:1538: 59.09597814642824 <- latitude -> 59.18961201402212
10:54:50 DEBUG opendrift.models.basemodel:1543: 10.85049365740951 <- longitude -> 11.042513150982973
10:54:50 DEBUG opendrift.models.basemodel:1548: -21.04257234246706 <- z -> 0.0
10:54:50 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:50 DEBUG opendrift.models.basemodel:836: Lifting 295 elements to seafloor.
10:54:50 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:50 INFO opendrift.models.basemodel:2882: 2023-08-22 11:22:19.552469 - step 148 of 216 - 5139 active elements (0 deactivated)
10:54:50 DEBUG opendrift.models.basemodel:2888: 4861 elements scheduled.
10:54:50 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:50 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:50 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:50 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:50 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:50 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:50 DEBUG opendrift.models.basemodel:1253: Data needed for 5139 elements
10:54:50 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:50 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:50 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:50 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:50 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:50 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:50 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:50 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:50 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:50 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:50 DEBUG opendrift.models.basemodel:1253: Data needed for 5139 elements
10:54:50 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:50 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 11:00:00 (before)
2023-08-22 12:00:00 (after)
10:54:50 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:50 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:50 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:50 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:50 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:50 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:50 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x25x6) for time after (2023-08-22 12:00:00)
10:54:50 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 11:00:00) in space (linearNDFast)
10:54:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:50 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 12:00:00) in space (linearNDFast)
10:54:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2604 elements, expanding data 1
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 2
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2604 elements, expanding data 1
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 2
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2805 elements, expanding data 1
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 561 elements, expanding data 2
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 105 elements, expanding data 3
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2805 elements, expanding data 1
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 561 elements, expanding data 2
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 105 elements, expanding data 3
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2805 elements, expanding data 1
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 561 elements, expanding data 2
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 105 elements, expanding data 3
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2805 elements, expanding data 1
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 561 elements, expanding data 2
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 105 elements, expanding data 3
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2805 elements, expanding data 1
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 561 elements, expanding data 2
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 105 elements, expanding data 3
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2805 elements, expanding data 1
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 561 elements, expanding data 2
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 105 elements, expanding data 3
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3941 elements, expanding data 1
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1204 elements, expanding data 2
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3941 elements, expanding data 1
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1204 elements, expanding data 2
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3941 elements, expanding data 1
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1204 elements, expanding data 2
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3941 elements, expanding data 1
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1204 elements, expanding data 2
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3941 elements, expanding data 1
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1204 elements, expanding data 2
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3941 elements, expanding data 1
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1204 elements, expanding data 2
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2604 elements, expanding data 1
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 2
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2604 elements, expanding data 1
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 2
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2604 elements, expanding data 1
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 2
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2604 elements, expanding data 1
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 2
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2604 elements, expanding data 1
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 2
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2604 elements, expanding data 1
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 109 elements, expanding data 2
10:54:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:50 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 11:00:00, weight 0.63) and
after (2023-08-22 12:00:00, weight 0.37) in time
10:54:50 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.14951691781729 and -58.95749739813628 degrees.
10:54:50 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.14951691781729 and -58.95749739813628 degrees.
10:54:50 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:50 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:50 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:50 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:50 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:50 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:50 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.781077 (min) 0.980507 (max)
10:54:50 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.07197 (min) 0.933124 (max)
10:54:50 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000501297 (min) 0.000561845 (max)
10:54:50 DEBUG opendrift.models.basemodel:1524: x_wind: -4.86663 (min) 10.597 (max)
10:54:50 DEBUG opendrift.models.basemodel:1524: y_wind: -5.20034 (min) 10.1837 (max)
10:54:50 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:50 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:50 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:50 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:50 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:50 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:50 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:50 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 25.8482 (max)
10:54:50 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:50 DEBUG opendrift.models.basemodel:1527: 5139 active elements
10:54:50 DEBUG opendrift.models.basemodel:1538: 59.09597814642824 <- latitude -> 59.18961201402212
10:54:50 DEBUG opendrift.models.basemodel:1543: 10.85049365740951 <- longitude -> 11.042513150982973
10:54:50 DEBUG opendrift.models.basemodel:1548: -21.04257234246706 <- z -> 0.0
10:54:50 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:50 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:50 DEBUG opendrift.models.physics_methods:940: min: 0.053186, mean: 4.004057, max: 10.693444
10:54:50 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.053186, mean: 4.004057, max: 10.693444
10:54:50 DEBUG opendrift.models.basemodel:813: 627 elements hit coastline, moving back to water
10:54:50 DEBUG opendrift.models.basemodel:836: Lifting 19 elements to seafloor.
10:54:50 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:50 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:50 DEBUG opendrift.models.physics_methods:741: Advecting 38 of 5139 elements above 0.100m with wind-sheared ocean current (0.005385 m/s - 0.161282 m/s)
10:54:50 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:50 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:50 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.14149793497426985
10:54:50 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:50 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:50 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:50 DEBUG opendrift.models.oceandrift:572: 628 elements penetrated seafloor, lifting up
10:54:50 DEBUG opendrift.models.oceandrift:590: 73 elements reached seafloor, set to bottom
10:54:50 DEBUG opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
10:54:50 DEBUG opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
10:54:50 DEBUG opendrift.models.oceandrift:572: 488 elements penetrated seafloor, lifting up
10:54:50 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:54:50 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:54:50 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:54:50 DEBUG opendrift.models.oceandrift:572: 466 elements penetrated seafloor, lifting up
10:54:50 DEBUG opendrift.models.oceandrift:590: 53 elements reached seafloor, set to bottom
10:54:50 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
10:54:50 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
10:54:50 DEBUG opendrift.models.oceandrift:572: 427 elements penetrated seafloor, lifting up
10:54:50 DEBUG opendrift.models.oceandrift:590: 42 elements reached seafloor, set to bottom
10:54:50 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
10:54:50 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
10:54:50 DEBUG opendrift.models.oceandrift:572: 408 elements penetrated seafloor, lifting up
10:54:50 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:54:50 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:54:50 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:54:50 DEBUG opendrift.models.oceandrift:572: 432 elements penetrated seafloor, lifting up
10:54:50 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:54:50 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:54:50 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:54:50 DEBUG opendrift.models.oceandrift:572: 463 elements penetrated seafloor, lifting up
10:54:50 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:54:50 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:54:50 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:54:50 DEBUG opendrift.models.oceandrift:572: 425 elements penetrated seafloor, lifting up
10:54:50 DEBUG opendrift.models.oceandrift:590: 32 elements reached seafloor, set to bottom
10:54:50 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
10:54:50 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
10:54:50 DEBUG opendrift.models.oceandrift:572: 399 elements penetrated seafloor, lifting up
10:54:50 DEBUG opendrift.models.oceandrift:590: 41 elements reached seafloor, set to bottom
10:54:50 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
10:54:50 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
10:54:50 DEBUG opendrift.models.oceandrift:572: 433 elements penetrated seafloor, lifting up
10:54:50 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:54:50 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:54:50 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:54:50 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:50 DEBUG opendrift.models.basemodel:2945: 5139 active elements (0 deactivated)
10:54:50 DEBUG opendrift.models.basemodel:1658: to be seeded: 4861, already seeded 5139
10:54:50 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:50 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:50 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:50 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:50 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:50 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:50 DEBUG opendrift.models.basemodel:1253: Data needed for 5174 elements
10:54:50 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:50 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 11:00:00 (before)
2023-08-22 12:00:00 (after)
10:54:50 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 11:00:00) in space (linearNDFast)
10:54:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:50 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:50 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:50 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:50 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:50 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:50 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 28.1007 (max)
10:54:50 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:50 DEBUG opendrift.models.basemodel:1527: 5174 active elements
10:54:50 DEBUG opendrift.models.basemodel:1538: 59.09449367817548 <- latitude -> 59.189866990579944
10:54:50 DEBUG opendrift.models.basemodel:1543: 10.845558970709343 <- longitude -> 11.045272426796911
10:54:50 DEBUG opendrift.models.basemodel:1548: -22.037463237723617 <- z -> 0.0
10:54:50 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:50 DEBUG opendrift.models.basemodel:836: Lifting 333 elements to seafloor.
10:54:50 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:50 INFO opendrift.models.basemodel:2882: 2023-08-22 11:32:19.552469 - step 149 of 216 - 5174 active elements (0 deactivated)
10:54:50 DEBUG opendrift.models.basemodel:2888: 4826 elements scheduled.
10:54:50 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:50 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:50 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:50 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:50 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:50 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:50 DEBUG opendrift.models.basemodel:1253: Data needed for 5174 elements
10:54:50 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:50 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:50 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:50 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:50 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:50 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:50 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:50 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:50 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:50 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:50 DEBUG opendrift.models.basemodel:1253: Data needed for 5174 elements
10:54:50 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:50 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 11:00:00 (before)
2023-08-22 12:00:00 (after)
10:54:52 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:52 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:52 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:52 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:52 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:52 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:52 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x25x6) for time after (2023-08-22 12:00:00)
10:54:52 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 11:00:00) in space (linearNDFast)
10:54:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:52 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 12:00:00) in space (linearNDFast)
10:54:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2623 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2623 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2823 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 576 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 106 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2823 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 576 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 106 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2823 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 576 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 106 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2823 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 576 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 106 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2823 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 576 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 106 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2823 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 576 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 106 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3991 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1207 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3991 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1207 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3991 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1207 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3991 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1207 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3991 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1207 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3991 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1207 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2623 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2623 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2623 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2623 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2623 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2623 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:52 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 11:00:00, weight 0.46) and
after (2023-08-22 12:00:00, weight 0.54) in time
10:54:52 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.154451603641405 and -58.95473810976391 degrees.
10:54:52 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.154451603641405 and -58.95473810976391 degrees.
10:54:52 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:52 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:52 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:52 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:52 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:52 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:52 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.779665 (min) 1.02501 (max)
10:54:52 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.03667 (min) 0.777271 (max)
10:54:52 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000445477 (min) 0.00054773 (max)
10:54:52 DEBUG opendrift.models.basemodel:1524: x_wind: -4.86389 (min) 9.93769 (max)
10:54:52 DEBUG opendrift.models.basemodel:1524: y_wind: -5.04924 (min) 9.47282 (max)
10:54:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:52 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:52 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:52 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:52 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 28.1007 (max)
10:54:52 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:52 DEBUG opendrift.models.basemodel:1527: 5174 active elements
10:54:52 DEBUG opendrift.models.basemodel:1538: 59.09449367817548 <- latitude -> 59.189866990579944
10:54:52 DEBUG opendrift.models.basemodel:1543: 10.845558970709343 <- longitude -> 11.045272426796911
10:54:52 DEBUG opendrift.models.basemodel:1548: -22.037463237723617 <- z -> 0.0
10:54:52 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:52 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:52 DEBUG opendrift.models.physics_methods:940: min: 0.122681, mean: 4.065103, max: 10.232449
10:54:52 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.122681, mean: 4.065103, max: 10.232449
10:54:52 DEBUG opendrift.models.basemodel:813: 667 elements hit coastline, moving back to water
10:54:52 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:54:52 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:52 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:52 DEBUG opendrift.models.physics_methods:741: Advecting 37 of 5174 elements above 0.100m with wind-sheared ocean current (0.014778 m/s - 0.153339 m/s)
10:54:52 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:52 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:52 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.12956126996143338
10:54:52 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:52 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:52 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:52 DEBUG opendrift.models.oceandrift:572: 634 elements penetrated seafloor, lifting up
10:54:52 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:54:52 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:54:52 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:54:52 DEBUG opendrift.models.oceandrift:572: 538 elements penetrated seafloor, lifting up
10:54:52 DEBUG opendrift.models.oceandrift:590: 53 elements reached seafloor, set to bottom
10:54:52 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
10:54:52 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
10:54:52 DEBUG opendrift.models.oceandrift:572: 512 elements penetrated seafloor, lifting up
10:54:52 DEBUG opendrift.models.oceandrift:590: 39 elements reached seafloor, set to bottom
10:54:52 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
10:54:52 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
10:54:52 DEBUG opendrift.models.oceandrift:572: 461 elements penetrated seafloor, lifting up
10:54:52 DEBUG opendrift.models.oceandrift:590: 41 elements reached seafloor, set to bottom
10:54:52 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
10:54:52 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
10:54:52 DEBUG opendrift.models.oceandrift:572: 442 elements penetrated seafloor, lifting up
10:54:52 DEBUG opendrift.models.oceandrift:590: 39 elements reached seafloor, set to bottom
10:54:52 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
10:54:52 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
10:54:52 DEBUG opendrift.models.oceandrift:572: 449 elements penetrated seafloor, lifting up
10:54:52 DEBUG opendrift.models.oceandrift:590: 60 elements reached seafloor, set to bottom
10:54:52 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
10:54:52 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
10:54:52 DEBUG opendrift.models.oceandrift:572: 433 elements penetrated seafloor, lifting up
10:54:52 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:54:52 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:54:52 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:54:52 DEBUG opendrift.models.oceandrift:572: 403 elements penetrated seafloor, lifting up
10:54:52 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:54:52 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:54:52 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:54:52 DEBUG opendrift.models.oceandrift:572: 406 elements penetrated seafloor, lifting up
10:54:52 DEBUG opendrift.models.oceandrift:590: 71 elements reached seafloor, set to bottom
10:54:52 DEBUG opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
10:54:52 DEBUG opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
10:54:52 DEBUG opendrift.models.oceandrift:572: 407 elements penetrated seafloor, lifting up
10:54:52 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:54:52 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:54:52 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:54:52 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:52 DEBUG opendrift.models.basemodel:2945: 5174 active elements (0 deactivated)
10:54:52 DEBUG opendrift.models.basemodel:1658: to be seeded: 4826, already seeded 5174
10:54:52 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:54:52 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:52 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:52 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:52 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:52 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:52 DEBUG opendrift.models.basemodel:1253: Data needed for 5208 elements
10:54:52 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:52 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 11:00:00 (before)
2023-08-22 12:00:00 (after)
10:54:52 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 11:00:00) in space (linearNDFast)
10:54:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:52 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:52 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:52 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:52 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:52 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:52 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 29.6435 (max)
10:54:52 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:52 DEBUG opendrift.models.basemodel:1527: 5208 active elements
10:54:52 DEBUG opendrift.models.basemodel:1538: 59.09433939789581 <- latitude -> 59.19184492076068
10:54:52 DEBUG opendrift.models.basemodel:1543: 10.842224669019412 <- longitude -> 11.03900995237427
10:54:52 DEBUG opendrift.models.basemodel:1548: -18.488783044994243 <- z -> 0.0
10:54:52 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:52 DEBUG opendrift.models.basemodel:836: Lifting 323 elements to seafloor.
10:54:52 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:52 INFO opendrift.models.basemodel:2882: 2023-08-22 11:42:19.552469 - step 150 of 216 - 5208 active elements (0 deactivated)
10:54:52 DEBUG opendrift.models.basemodel:2888: 4792 elements scheduled.
10:54:52 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:52 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:52 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:52 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:52 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:52 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:52 DEBUG opendrift.models.basemodel:1253: Data needed for 5208 elements
10:54:52 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:52 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:52 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:52 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:52 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:52 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:52 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:52 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:52 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:52 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:52 DEBUG opendrift.models.basemodel:1253: Data needed for 5208 elements
10:54:52 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:52 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 11:00:00 (before)
2023-08-22 12:00:00 (after)
10:54:52 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:52 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:52 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:52 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:52 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:52 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:52 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x27x6) for time after (2023-08-22 12:00:00)
10:54:52 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 11:00:00) in space (linearNDFast)
10:54:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:52 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 12:00:00) in space (linearNDFast)
10:54:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2668 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2668 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2876 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 592 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2876 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 592 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2876 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 592 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2876 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 592 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2876 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 592 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2876 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 592 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 112 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4035 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4035 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4035 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4035 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4035 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4035 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1234 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2668 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2668 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2668 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2668 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2668 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2668 elements, expanding data 1
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 120 elements, expanding data 2
10:54:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:52 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 11:00:00, weight 0.29) and
after (2023-08-22 12:00:00, weight 0.71) in time
10:54:52 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.15778590853769 and -58.961000592900625 degrees.
10:54:52 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.15778590853769 and -58.961000592900625 degrees.
10:54:52 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:52 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:52 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:52 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:52 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:52 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:52 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.775036 (min) 1.05847 (max)
10:54:52 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.933812 (min) 0.769911 (max)
10:54:52 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000393224 (min) 0.000498579 (max)
10:54:52 DEBUG opendrift.models.basemodel:1524: x_wind: -5.53173 (min) 9.81892 (max)
10:54:52 DEBUG opendrift.models.basemodel:1524: y_wind: -3.77876 (min) 10.386 (max)
10:54:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:52 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:52 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:52 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:52 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 29.6435 (max)
10:54:52 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:52 DEBUG opendrift.models.basemodel:1527: 5208 active elements
10:54:52 DEBUG opendrift.models.basemodel:1538: 59.09433939789581 <- latitude -> 59.19184492076068
10:54:52 DEBUG opendrift.models.basemodel:1543: 10.842224669019412 <- longitude -> 11.03900995237427
10:54:52 DEBUG opendrift.models.basemodel:1548: -18.488783044994243 <- z -> 0.0
10:54:52 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:52 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:52 DEBUG opendrift.models.physics_methods:940: min: 0.050316, mean: 4.073123, max: 10.201328
10:54:52 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.050316, mean: 4.073123, max: 10.201328
10:54:52 DEBUG opendrift.models.basemodel:813: 641 elements hit coastline, moving back to water
10:54:52 DEBUG opendrift.models.basemodel:836: Lifting 139 elements to seafloor.
10:54:52 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:52 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:52 DEBUG opendrift.models.physics_methods:741: Advecting 38 of 5208 elements above 0.100m with wind-sheared ocean current (0.001768 m/s - 0.142569 m/s)
10:54:52 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:52 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:52 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.12877438765914914
10:54:52 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:52 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:52 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:52 DEBUG opendrift.models.oceandrift:572: 678 elements penetrated seafloor, lifting up
10:54:52 DEBUG opendrift.models.oceandrift:590: 66 elements reached seafloor, set to bottom
10:54:52 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
10:54:52 DEBUG opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
10:54:52 DEBUG opendrift.models.oceandrift:572: 550 elements penetrated seafloor, lifting up
10:54:52 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:54:52 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:54:52 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:54:52 DEBUG opendrift.models.oceandrift:572: 503 elements penetrated seafloor, lifting up
10:54:52 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:54:52 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:54:52 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:54:52 DEBUG opendrift.models.oceandrift:572: 465 elements penetrated seafloor, lifting up
10:54:52 DEBUG opendrift.models.oceandrift:590: 44 elements reached seafloor, set to bottom
10:54:52 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
10:54:52 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
10:54:52 DEBUG opendrift.models.oceandrift:572: 444 elements penetrated seafloor, lifting up
10:54:52 DEBUG opendrift.models.oceandrift:590: 32 elements reached seafloor, set to bottom
10:54:52 DEBUG opendrift.models.basemodel:836: Lifting 32 elements to seafloor.
10:54:52 DEBUG opendrift.models.sedimentdrift:112: Settling 32 elements at seafloor
10:54:52 DEBUG opendrift.models.oceandrift:572: 423 elements penetrated seafloor, lifting up
10:54:52 DEBUG opendrift.models.oceandrift:590: 44 elements reached seafloor, set to bottom
10:54:52 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
10:54:52 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
10:54:52 DEBUG opendrift.models.oceandrift:572: 451 elements penetrated seafloor, lifting up
10:54:52 DEBUG opendrift.models.oceandrift:590: 69 elements reached seafloor, set to bottom
10:54:52 DEBUG opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
10:54:52 DEBUG opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
10:54:52 DEBUG opendrift.models.oceandrift:572: 421 elements penetrated seafloor, lifting up
10:54:52 DEBUG opendrift.models.oceandrift:590: 39 elements reached seafloor, set to bottom
10:54:52 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
10:54:52 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
10:54:52 DEBUG opendrift.models.oceandrift:572: 416 elements penetrated seafloor, lifting up
10:54:52 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:54:52 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:54:52 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:54:53 DEBUG opendrift.models.oceandrift:572: 464 elements penetrated seafloor, lifting up
10:54:53 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:54:53 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:54:53 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:54:53 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:53 DEBUG opendrift.models.basemodel:2945: 5208 active elements (0 deactivated)
10:54:53 DEBUG opendrift.models.basemodel:1658: to be seeded: 4792, already seeded 5208
10:54:53 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:53 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:53 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:53 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:53 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:53 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:53 DEBUG opendrift.models.basemodel:1253: Data needed for 5243 elements
10:54:53 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:53 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 11:00:00 (before)
2023-08-22 12:00:00 (after)
10:54:53 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 11:00:00) in space (linearNDFast)
10:54:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:53 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:53 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:53 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:53 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:53 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:53 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 30.884 (max)
10:54:53 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:53 DEBUG opendrift.models.basemodel:1527: 5243 active elements
10:54:53 DEBUG opendrift.models.basemodel:1538: 59.095447982062275 <- latitude -> 59.18998187027524
10:54:53 DEBUG opendrift.models.basemodel:1543: 10.840004255435597 <- longitude -> 11.039997145776821
10:54:53 DEBUG opendrift.models.basemodel:1548: -18.565301773226032 <- z -> 0.0
10:54:53 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:53 DEBUG opendrift.models.basemodel:836: Lifting 340 elements to seafloor.
10:54:53 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:53 INFO opendrift.models.basemodel:2882: 2023-08-22 11:52:19.552469 - step 151 of 216 - 5243 active elements (0 deactivated)
10:54:53 DEBUG opendrift.models.basemodel:2888: 4757 elements scheduled.
10:54:53 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:53 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:53 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:53 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:53 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:53 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:53 DEBUG opendrift.models.basemodel:1253: Data needed for 5243 elements
10:54:53 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:53 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:53 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:53 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:53 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:53 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:53 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:53 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:53 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:53 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:53 DEBUG opendrift.models.basemodel:1253: Data needed for 5243 elements
10:54:53 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:53 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 11:00:00 (before)
2023-08-22 12:00:00 (after)
10:54:53 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:53 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:53 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:53 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:53 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:53 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:53 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x27x6) for time after (2023-08-22 12:00:00)
10:54:53 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 11:00:00) in space (linearNDFast)
10:54:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:53 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 12:00:00) in space (linearNDFast)
10:54:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2698 elements, expanding data 1
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2698 elements, expanding data 1
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2899 elements, expanding data 1
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 598 elements, expanding data 2
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 3
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2899 elements, expanding data 1
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 598 elements, expanding data 2
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 3
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2899 elements, expanding data 1
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 598 elements, expanding data 2
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 3
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2899 elements, expanding data 1
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 598 elements, expanding data 2
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 3
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2899 elements, expanding data 1
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 598 elements, expanding data 2
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 3
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2899 elements, expanding data 1
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 598 elements, expanding data 2
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 111 elements, expanding data 3
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4047 elements, expanding data 1
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1257 elements, expanding data 2
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4047 elements, expanding data 1
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1257 elements, expanding data 2
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4047 elements, expanding data 1
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1257 elements, expanding data 2
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4047 elements, expanding data 1
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1257 elements, expanding data 2
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4047 elements, expanding data 1
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1257 elements, expanding data 2
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4047 elements, expanding data 1
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1257 elements, expanding data 2
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2698 elements, expanding data 1
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2698 elements, expanding data 1
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2698 elements, expanding data 1
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2698 elements, expanding data 1
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2698 elements, expanding data 1
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2698 elements, expanding data 1
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 117 elements, expanding data 2
10:54:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:53 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 11:00:00, weight 0.13) and
after (2023-08-22 12:00:00, weight 0.87) in time
10:54:53 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.160006325713944 and -58.9600133953037 degrees.
10:54:53 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.160006325713944 and -58.9600133953037 degrees.
10:54:53 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:53 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:53 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:53 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:53 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:53 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:53 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.827116 (min) 1.07541 (max)
10:54:53 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.92642 (min) 0.899504 (max)
10:54:53 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000410617 (min) 0.000467402 (max)
10:54:53 DEBUG opendrift.models.basemodel:1524: x_wind: -4.57644 (min) 11.3011 (max)
10:54:53 DEBUG opendrift.models.basemodel:1524: y_wind: -5.80373 (min) 9.76553 (max)
10:54:53 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:53 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:53 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:53 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:53 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:53 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:53 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:53 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 30.884 (max)
10:54:53 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:53 DEBUG opendrift.models.basemodel:1527: 5243 active elements
10:54:53 DEBUG opendrift.models.basemodel:1538: 59.095447982062275 <- latitude -> 59.18998187027524
10:54:53 DEBUG opendrift.models.basemodel:1543: 10.840004255435597 <- longitude -> 11.039997145776821
10:54:53 DEBUG opendrift.models.basemodel:1548: -18.565301773226032 <- z -> 0.0
10:54:53 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:53 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:53 DEBUG opendrift.models.physics_methods:940: min: 0.173674, mean: 4.101461, max: 10.409294
10:54:53 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.173674, mean: 4.101461, max: 10.409294
10:54:53 DEBUG opendrift.models.basemodel:813: 685 elements hit coastline, moving back to water
10:54:53 DEBUG opendrift.models.basemodel:836: Lifting 6 elements to seafloor.
10:54:53 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:53 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:53 DEBUG opendrift.models.physics_methods:741: Advecting 38 of 5243 elements above 0.100m with wind-sheared ocean current (0.006987 m/s - 0.177686 m/s)
10:54:53 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:53 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:53 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.1340781940093803
10:54:53 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:53 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:53 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:53 DEBUG opendrift.models.oceandrift:572: 631 elements penetrated seafloor, lifting up
10:54:53 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:54:53 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:54:53 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:54:53 DEBUG opendrift.models.oceandrift:572: 532 elements penetrated seafloor, lifting up
10:54:53 DEBUG opendrift.models.oceandrift:590: 62 elements reached seafloor, set to bottom
10:54:53 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
10:54:53 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
10:54:53 DEBUG opendrift.models.oceandrift:572: 498 elements penetrated seafloor, lifting up
10:54:53 DEBUG opendrift.models.oceandrift:590: 53 elements reached seafloor, set to bottom
10:54:53 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
10:54:53 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
10:54:53 DEBUG opendrift.models.oceandrift:572: 475 elements penetrated seafloor, lifting up
10:54:53 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:54:53 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:54:53 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:54:53 DEBUG opendrift.models.oceandrift:572: 448 elements penetrated seafloor, lifting up
10:54:53 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:54:53 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:54:53 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:54:53 DEBUG opendrift.models.oceandrift:572: 445 elements penetrated seafloor, lifting up
10:54:53 DEBUG opendrift.models.oceandrift:590: 44 elements reached seafloor, set to bottom
10:54:53 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
10:54:53 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
10:54:53 DEBUG opendrift.models.oceandrift:572: 471 elements penetrated seafloor, lifting up
10:54:53 DEBUG opendrift.models.oceandrift:590: 34 elements reached seafloor, set to bottom
10:54:53 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
10:54:53 DEBUG opendrift.models.sedimentdrift:112: Settling 34 elements at seafloor
10:54:53 DEBUG opendrift.models.oceandrift:572: 426 elements penetrated seafloor, lifting up
10:54:53 DEBUG opendrift.models.oceandrift:590: 64 elements reached seafloor, set to bottom
10:54:53 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
10:54:53 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
10:54:53 DEBUG opendrift.models.oceandrift:572: 431 elements penetrated seafloor, lifting up
10:54:53 DEBUG opendrift.models.oceandrift:590: 44 elements reached seafloor, set to bottom
10:54:53 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
10:54:53 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
10:54:53 DEBUG opendrift.models.oceandrift:572: 412 elements penetrated seafloor, lifting up
10:54:53 DEBUG opendrift.models.oceandrift:590: 40 elements reached seafloor, set to bottom
10:54:53 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
10:54:53 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
10:54:53 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:53 DEBUG opendrift.models.basemodel:2945: 5243 active elements (0 deactivated)
10:54:53 DEBUG opendrift.models.basemodel:1658: to be seeded: 4757, already seeded 5243
10:54:53 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:53 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:53 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:53 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:53 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:53 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:53 DEBUG opendrift.models.basemodel:1253: Data needed for 5278 elements
10:54:53 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:53 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 12:00:00 (before)
2023-08-22 13:00:00 (after)
10:54:53 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 12:00:00) in space (linearNDFast)
10:54:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:53 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:53 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:53 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:53 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:53 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:53 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 30.3409 (max)
10:54:53 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:53 DEBUG opendrift.models.basemodel:1527: 5278 active elements
10:54:53 DEBUG opendrift.models.basemodel:1538: 59.09540241841846 <- latitude -> 59.19061931674621
10:54:53 DEBUG opendrift.models.basemodel:1543: 10.840889713400932 <- longitude -> 11.04325564016571
10:54:53 DEBUG opendrift.models.basemodel:1548: -21.837592675869875 <- z -> 0.0
10:54:53 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:53 DEBUG opendrift.models.basemodel:836: Lifting 324 elements to seafloor.
10:54:53 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:53 INFO opendrift.models.basemodel:2882: 2023-08-22 12:02:19.552469 - step 152 of 216 - 5278 active elements (0 deactivated)
10:54:53 DEBUG opendrift.models.basemodel:2888: 4722 elements scheduled.
10:54:53 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:53 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:53 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:53 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:53 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:53 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:53 DEBUG opendrift.models.basemodel:1253: Data needed for 5278 elements
10:54:53 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:53 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:53 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:53 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:53 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:53 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:53 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:53 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:53 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:53 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:53 DEBUG opendrift.models.basemodel:1253: Data needed for 5278 elements
10:54:53 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:53 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 12:00:00 (before)
2023-08-22 13:00:00 (after)
10:54:55 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:55 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:55 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:55 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:55 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:55 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:55 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x27x6) for time after (2023-08-22 13:00:00)
10:54:55 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 12:00:00) in space (linearNDFast)
10:54:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:55 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 13:00:00) in space (linearNDFast)
10:54:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2745 elements, expanding data 1
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 122 elements, expanding data 2
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2745 elements, expanding data 1
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 122 elements, expanding data 2
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2937 elements, expanding data 1
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 608 elements, expanding data 2
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 3
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2937 elements, expanding data 1
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 608 elements, expanding data 2
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 3
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2937 elements, expanding data 1
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 608 elements, expanding data 2
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 3
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2937 elements, expanding data 1
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 608 elements, expanding data 2
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 3
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2937 elements, expanding data 1
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 608 elements, expanding data 2
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 3
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2937 elements, expanding data 1
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 608 elements, expanding data 2
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 118 elements, expanding data 3
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4134 elements, expanding data 1
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1256 elements, expanding data 2
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4134 elements, expanding data 1
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1256 elements, expanding data 2
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4134 elements, expanding data 1
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1256 elements, expanding data 2
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4134 elements, expanding data 1
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1256 elements, expanding data 2
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4134 elements, expanding data 1
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1256 elements, expanding data 2
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4134 elements, expanding data 1
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1256 elements, expanding data 2
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2745 elements, expanding data 1
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 122 elements, expanding data 2
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2745 elements, expanding data 1
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 122 elements, expanding data 2
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2745 elements, expanding data 1
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 122 elements, expanding data 2
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2745 elements, expanding data 1
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 122 elements, expanding data 2
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2745 elements, expanding data 1
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 122 elements, expanding data 2
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2745 elements, expanding data 1
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 122 elements, expanding data 2
10:54:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:55 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 12:00:00, weight 0.96) and
after (2023-08-22 13:00:00, weight 0.04) in time
10:54:55 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.159120855660014 and -58.956754897489176 degrees.
10:54:55 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.159120855660014 and -58.956754897489176 degrees.
10:54:55 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:55 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:55 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:55 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:55 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:55 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:55 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.829428 (min) 1.04191 (max)
10:54:55 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.887566 (min) 0.843419 (max)
10:54:55 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000451798 (min) 0.000442808 (max)
10:54:55 DEBUG opendrift.models.basemodel:1524: x_wind: -4.71238 (min) 11.8686 (max)
10:54:55 DEBUG opendrift.models.basemodel:1524: y_wind: -6.12537 (min) 10.6835 (max)
10:54:55 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:55 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:55 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:55 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:55 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:55 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:55 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:55 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 30.3409 (max)
10:54:55 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:55 DEBUG opendrift.models.basemodel:1527: 5278 active elements
10:54:55 DEBUG opendrift.models.basemodel:1538: 59.09540241841846 <- latitude -> 59.19061931674621
10:54:55 DEBUG opendrift.models.basemodel:1543: 10.840889713400932 <- longitude -> 11.04325564016571
10:54:55 DEBUG opendrift.models.basemodel:1548: -21.837592675869875 <- z -> 0.0
10:54:55 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:55 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:55 DEBUG opendrift.models.physics_methods:940: min: 0.151497, mean: 4.090658, max: 10.353095
10:54:55 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.151497, mean: 4.090658, max: 10.353095
10:54:55 DEBUG opendrift.models.basemodel:813: 653 elements hit coastline, moving back to water
10:54:55 DEBUG opendrift.models.basemodel:836: Lifting 92 elements to seafloor.
10:54:55 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:55 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:55 DEBUG opendrift.models.physics_methods:741: Advecting 37 of 5278 elements above 0.100m with wind-sheared ocean current (0.016226 m/s - 0.173132 m/s)
10:54:55 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:55 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:55 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.1326343817749786
10:54:55 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:55 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:55 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:55 DEBUG opendrift.models.oceandrift:572: 625 elements penetrated seafloor, lifting up
10:54:55 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:54:55 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:54:55 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:54:55 DEBUG opendrift.models.oceandrift:572: 484 elements penetrated seafloor, lifting up
10:54:55 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:54:55 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:54:55 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:54:55 DEBUG opendrift.models.oceandrift:572: 495 elements penetrated seafloor, lifting up
10:54:55 DEBUG opendrift.models.oceandrift:590: 53 elements reached seafloor, set to bottom
10:54:55 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
10:54:55 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
10:54:55 DEBUG opendrift.models.oceandrift:572: 450 elements penetrated seafloor, lifting up
10:54:55 DEBUG opendrift.models.oceandrift:590: 54 elements reached seafloor, set to bottom
10:54:55 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
10:54:55 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
10:54:55 DEBUG opendrift.models.oceandrift:572: 467 elements penetrated seafloor, lifting up
10:54:55 DEBUG opendrift.models.oceandrift:590: 38 elements reached seafloor, set to bottom
10:54:55 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
10:54:55 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
10:54:55 DEBUG opendrift.models.oceandrift:572: 463 elements penetrated seafloor, lifting up
10:54:55 DEBUG opendrift.models.oceandrift:590: 43 elements reached seafloor, set to bottom
10:54:55 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
10:54:55 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
10:54:55 DEBUG opendrift.models.oceandrift:572: 401 elements penetrated seafloor, lifting up
10:54:55 DEBUG opendrift.models.oceandrift:590: 54 elements reached seafloor, set to bottom
10:54:55 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
10:54:55 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
10:54:55 DEBUG opendrift.models.oceandrift:572: 445 elements penetrated seafloor, lifting up
10:54:55 DEBUG opendrift.models.oceandrift:590: 40 elements reached seafloor, set to bottom
10:54:55 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
10:54:55 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
10:54:55 DEBUG opendrift.models.oceandrift:572: 435 elements penetrated seafloor, lifting up
10:54:55 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:54:55 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:54:55 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:54:55 DEBUG opendrift.models.oceandrift:572: 378 elements penetrated seafloor, lifting up
10:54:55 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:54:55 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:54:55 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:54:55 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:55 DEBUG opendrift.models.basemodel:2945: 5278 active elements (0 deactivated)
10:54:55 DEBUG opendrift.models.basemodel:1658: to be seeded: 4722, already seeded 5278
10:54:55 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:54:55 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:55 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:55 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:55 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:55 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:55 DEBUG opendrift.models.basemodel:1253: Data needed for 5312 elements
10:54:55 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:55 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 12:00:00 (before)
2023-08-22 13:00:00 (after)
10:54:55 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 12:00:00) in space (linearNDFast)
10:54:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:55 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:55 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:55 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:55 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:55 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:55 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 28.7625 (max)
10:54:55 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:55 DEBUG opendrift.models.basemodel:1527: 5312 active elements
10:54:55 DEBUG opendrift.models.basemodel:1538: 59.0961763753515 <- latitude -> 59.19013243492986
10:54:55 DEBUG opendrift.models.basemodel:1543: 10.844507342626478 <- longitude -> 11.039538586549574
10:54:55 DEBUG opendrift.models.basemodel:1548: -22.669554159013988 <- z -> 0.0
10:54:55 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:55 DEBUG opendrift.models.basemodel:836: Lifting 332 elements to seafloor.
10:54:55 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:55 INFO opendrift.models.basemodel:2882: 2023-08-22 12:12:19.552469 - step 153 of 216 - 5312 active elements (0 deactivated)
10:54:55 DEBUG opendrift.models.basemodel:2888: 4688 elements scheduled.
10:54:55 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:55 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:55 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:55 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:55 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:55 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:55 DEBUG opendrift.models.basemodel:1253: Data needed for 5312 elements
10:54:55 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:55 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:55 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:55 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:55 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:55 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:55 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:55 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:55 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:55 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:55 DEBUG opendrift.models.basemodel:1253: Data needed for 5312 elements
10:54:55 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:55 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 12:00:00 (before)
2023-08-22 13:00:00 (after)
10:54:56 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:56 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:56 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:56 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:56 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:56 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:56 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x27x6) for time after (2023-08-22 13:00:00)
10:54:56 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 12:00:00) in space (linearNDFast)
10:54:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:56 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 13:00:00) in space (linearNDFast)
10:54:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2771 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 130 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2771 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 130 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2976 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 614 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2976 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 614 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2976 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 614 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2976 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 614 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2976 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 614 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2976 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 614 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 125 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4165 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1271 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4165 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1271 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4165 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1271 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4165 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1271 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4165 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1271 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4165 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1271 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2771 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 130 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2771 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 130 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2771 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 130 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2771 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 130 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2771 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 130 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2771 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 130 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:54:56 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 12:00:00, weight 0.79) and
after (2023-08-22 13:00:00, weight 0.21) in time
10:54:56 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.15550323418105 and -58.96047195219563 degrees.
10:54:56 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.15550323418105 and -58.96047195219563 degrees.
10:54:56 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:56 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:56 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:56 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:56 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:56 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:56 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.775523 (min) 0.991037 (max)
10:54:56 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.947138 (min) 0.863633 (max)
10:54:56 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000374458 (min) 0.000492416 (max)
10:54:56 DEBUG opendrift.models.basemodel:1524: x_wind: -5.29643 (min) 10.573 (max)
10:54:56 DEBUG opendrift.models.basemodel:1524: y_wind: -6.10819 (min) 9.92713 (max)
10:54:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:56 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:56 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:56 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:56 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 28.7625 (max)
10:54:56 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:56 DEBUG opendrift.models.basemodel:1527: 5312 active elements
10:54:56 DEBUG opendrift.models.basemodel:1538: 59.0961763753515 <- latitude -> 59.19013243492986
10:54:56 DEBUG opendrift.models.basemodel:1543: 10.844507342626478 <- longitude -> 11.039538586549574
10:54:56 DEBUG opendrift.models.basemodel:1548: -22.669554159013988 <- z -> 0.0
10:54:56 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:56 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:56 DEBUG opendrift.models.physics_methods:940: min: 0.050262, mean: 4.150714, max: 10.663202
10:54:56 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.050262, mean: 4.150714, max: 10.663202
10:54:56 DEBUG opendrift.models.basemodel:813: 704 elements hit coastline, moving back to water
10:54:56 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:54:56 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:56 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:56 DEBUG opendrift.models.physics_methods:741: Advecting 45 of 5312 elements above 0.100m with wind-sheared ocean current (0.005421 m/s - 0.163457 m/s)
10:54:56 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:56 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:56 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.1406987380495834
10:54:56 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:56 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:56 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:56 DEBUG opendrift.models.oceandrift:572: 616 elements penetrated seafloor, lifting up
10:54:56 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:54:56 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:54:56 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:54:56 DEBUG opendrift.models.oceandrift:572: 507 elements penetrated seafloor, lifting up
10:54:56 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:54:56 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:54:56 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:54:56 DEBUG opendrift.models.oceandrift:572: 523 elements penetrated seafloor, lifting up
10:54:56 DEBUG opendrift.models.oceandrift:590: 68 elements reached seafloor, set to bottom
10:54:56 DEBUG opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
10:54:56 DEBUG opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
10:54:56 DEBUG opendrift.models.oceandrift:572: 489 elements penetrated seafloor, lifting up
10:54:56 DEBUG opendrift.models.oceandrift:590: 63 elements reached seafloor, set to bottom
10:54:56 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
10:54:56 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
10:54:56 DEBUG opendrift.models.oceandrift:572: 486 elements penetrated seafloor, lifting up
10:54:56 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:54:56 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:54:56 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:54:56 DEBUG opendrift.models.oceandrift:572: 474 elements penetrated seafloor, lifting up
10:54:56 DEBUG opendrift.models.oceandrift:590: 42 elements reached seafloor, set to bottom
10:54:56 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
10:54:56 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
10:54:56 DEBUG opendrift.models.oceandrift:572: 423 elements penetrated seafloor, lifting up
10:54:56 DEBUG opendrift.models.oceandrift:590: 39 elements reached seafloor, set to bottom
10:54:56 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
10:54:56 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
10:54:56 DEBUG opendrift.models.oceandrift:572: 444 elements penetrated seafloor, lifting up
10:54:56 DEBUG opendrift.models.oceandrift:590: 40 elements reached seafloor, set to bottom
10:54:56 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
10:54:56 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
10:54:56 DEBUG opendrift.models.oceandrift:572: 406 elements penetrated seafloor, lifting up
10:54:56 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:54:56 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:54:56 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:54:56 DEBUG opendrift.models.oceandrift:572: 426 elements penetrated seafloor, lifting up
10:54:56 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:54:56 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:54:56 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:54:56 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:56 DEBUG opendrift.models.basemodel:2945: 5312 active elements (0 deactivated)
10:54:56 DEBUG opendrift.models.basemodel:1658: to be seeded: 4688, already seeded 5312
10:54:56 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:56 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:56 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:56 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:56 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:56 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:56 DEBUG opendrift.models.basemodel:1253: Data needed for 5347 elements
10:54:56 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:56 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 12:00:00 (before)
2023-08-22 13:00:00 (after)
10:54:56 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 12:00:00) in space (linearNDFast)
10:54:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:56 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:56 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:56 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:56 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:56 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:56 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 30.1307 (max)
10:54:56 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:56 DEBUG opendrift.models.basemodel:1527: 5347 active elements
10:54:56 DEBUG opendrift.models.basemodel:1538: 59.095909803435504 <- latitude -> 59.19023796965941
10:54:56 DEBUG opendrift.models.basemodel:1543: 10.841963342437811 <- longitude -> 11.041679969833853
10:54:56 DEBUG opendrift.models.basemodel:1548: -18.979362716674803 <- z -> 0.0
10:54:56 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:56 DEBUG opendrift.models.basemodel:836: Lifting 348 elements to seafloor.
10:54:56 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:56 INFO opendrift.models.basemodel:2882: 2023-08-22 12:22:19.552469 - step 154 of 216 - 5347 active elements (0 deactivated)
10:54:56 DEBUG opendrift.models.basemodel:2888: 4653 elements scheduled.
10:54:56 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:56 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:56 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:56 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:56 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:56 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:56 DEBUG opendrift.models.basemodel:1253: Data needed for 5347 elements
10:54:56 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:56 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:56 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:56 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:56 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:56 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:56 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:56 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:56 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:56 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:56 DEBUG opendrift.models.basemodel:1253: Data needed for 5347 elements
10:54:56 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:56 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 12:00:00 (before)
2023-08-22 13:00:00 (after)
10:54:56 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:56 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:56 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:56 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:56 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:56 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:56 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x27x6) for time after (2023-08-22 13:00:00)
10:54:56 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 12:00:00) in space (linearNDFast)
10:54:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:56 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 13:00:00) in space (linearNDFast)
10:54:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2816 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 128 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2816 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 128 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3030 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 626 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3030 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 626 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3030 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 626 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3030 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 626 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3030 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 626 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3030 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 626 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4210 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1282 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4210 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1282 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4210 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1282 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4210 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1282 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4210 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1282 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4210 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1282 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2816 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 128 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2816 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 128 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2816 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 128 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2816 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 128 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2816 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 128 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2816 elements, expanding data 1
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 128 elements, expanding data 2
10:54:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:56 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 12:00:00, weight 0.63) and
after (2023-08-22 13:00:00, weight 0.37) in time
10:54:56 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.15804723188284 and -58.95833057510469 degrees.
10:54:56 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.15804723188284 and -58.95833057510469 degrees.
10:54:56 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:56 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:56 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:56 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:56 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:56 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:56 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.893428 (min) 0.987163 (max)
10:54:56 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.970592 (min) 0.999268 (max)
10:54:56 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.00035642 (min) 0.00047967 (max)
10:54:56 DEBUG opendrift.models.basemodel:1524: x_wind: -4.5266 (min) 10.8079 (max)
10:54:56 DEBUG opendrift.models.basemodel:1524: y_wind: -4.6924 (min) 11.0542 (max)
10:54:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:56 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:56 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:56 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:56 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:56 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 30.1307 (max)
10:54:56 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:56 DEBUG opendrift.models.basemodel:1527: 5347 active elements
10:54:56 DEBUG opendrift.models.basemodel:1538: 59.095909803435504 <- latitude -> 59.19023796965941
10:54:56 DEBUG opendrift.models.basemodel:1543: 10.841963342437811 <- longitude -> 11.041679969833853
10:54:56 DEBUG opendrift.models.basemodel:1548: -18.979362716674803 <- z -> 0.0
10:54:56 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:56 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:56 DEBUG opendrift.models.physics_methods:940: min: 0.139236, mean: 4.085037, max: 10.101406
10:54:56 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.139236, mean: 4.085037, max: 10.101406
10:54:56 DEBUG opendrift.models.basemodel:813: 701 elements hit coastline, moving back to water
10:54:56 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
10:54:57 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:57 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:57 DEBUG opendrift.models.physics_methods:741: Advecting 42 of 5347 elements above 0.100m with wind-sheared ocean current (0.005757 m/s - 0.217553 m/s)
10:54:57 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:57 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:57 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.12626414678009032
10:54:57 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:57 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:57 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:57 DEBUG opendrift.models.oceandrift:572: 643 elements penetrated seafloor, lifting up
10:54:57 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:54:57 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:54:57 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:54:57 DEBUG opendrift.models.oceandrift:572: 566 elements penetrated seafloor, lifting up
10:54:57 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:54:57 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:54:57 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:54:57 DEBUG opendrift.models.oceandrift:572: 512 elements penetrated seafloor, lifting up
10:54:57 DEBUG opendrift.models.oceandrift:590: 30 elements reached seafloor, set to bottom
10:54:57 DEBUG opendrift.models.basemodel:836: Lifting 30 elements to seafloor.
10:54:57 DEBUG opendrift.models.sedimentdrift:112: Settling 30 elements at seafloor
10:54:57 DEBUG opendrift.models.oceandrift:572: 484 elements penetrated seafloor, lifting up
10:54:57 DEBUG opendrift.models.oceandrift:590: 44 elements reached seafloor, set to bottom
10:54:57 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
10:54:57 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
10:54:57 DEBUG opendrift.models.oceandrift:572: 484 elements penetrated seafloor, lifting up
10:54:57 DEBUG opendrift.models.oceandrift:590: 65 elements reached seafloor, set to bottom
10:54:57 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
10:54:57 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
10:54:57 DEBUG opendrift.models.oceandrift:572: 469 elements penetrated seafloor, lifting up
10:54:57 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:54:57 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:54:57 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:54:57 DEBUG opendrift.models.oceandrift:572: 447 elements penetrated seafloor, lifting up
10:54:57 DEBUG opendrift.models.oceandrift:590: 35 elements reached seafloor, set to bottom
10:54:57 DEBUG opendrift.models.basemodel:836: Lifting 35 elements to seafloor.
10:54:57 DEBUG opendrift.models.sedimentdrift:112: Settling 35 elements at seafloor
10:54:57 DEBUG opendrift.models.oceandrift:572: 438 elements penetrated seafloor, lifting up
10:54:57 DEBUG opendrift.models.oceandrift:590: 54 elements reached seafloor, set to bottom
10:54:57 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
10:54:57 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
10:54:57 DEBUG opendrift.models.oceandrift:572: 457 elements penetrated seafloor, lifting up
10:54:57 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:54:57 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:54:57 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:54:57 DEBUG opendrift.models.oceandrift:572: 404 elements penetrated seafloor, lifting up
10:54:57 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:54:57 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:54:57 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:54:57 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:57 DEBUG opendrift.models.basemodel:2945: 5347 active elements (0 deactivated)
10:54:57 DEBUG opendrift.models.basemodel:1658: to be seeded: 4653, already seeded 5347
10:54:57 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:57 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:57 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:57 DEBUG opendrift.models.basemodel:1253: Data needed for 5382 elements
10:54:57 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:57 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 12:00:00 (before)
2023-08-22 13:00:00 (after)
10:54:57 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 12:00:00) in space (linearNDFast)
10:54:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:57 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:57 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:57 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:57 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:57 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:57 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 31.3007 (max)
10:54:57 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:57 DEBUG opendrift.models.basemodel:1527: 5382 active elements
10:54:57 DEBUG opendrift.models.basemodel:1538: 59.09615664546207 <- latitude -> 59.18960191981053
10:54:57 DEBUG opendrift.models.basemodel:1543: 10.83941241686589 <- longitude -> 11.042099350303879
10:54:57 DEBUG opendrift.models.basemodel:1548: -21.931035451010338 <- z -> 0.0
10:54:57 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:57 DEBUG opendrift.models.basemodel:836: Lifting 304 elements to seafloor.
10:54:57 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:57 INFO opendrift.models.basemodel:2882: 2023-08-22 12:32:19.552469 - step 155 of 216 - 5382 active elements (0 deactivated)
10:54:57 DEBUG opendrift.models.basemodel:2888: 4618 elements scheduled.
10:54:57 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:57 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:57 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:57 DEBUG opendrift.models.basemodel:1253: Data needed for 5382 elements
10:54:57 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:57 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:57 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:57 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:57 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:57 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:57 DEBUG opendrift.models.basemodel:1253: Data needed for 5382 elements
10:54:57 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:57 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 12:00:00 (before)
2023-08-22 13:00:00 (after)
10:54:57 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:57 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:57 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:57 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:57 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:57 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:57 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x27x6) for time after (2023-08-22 13:00:00)
10:54:57 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 12:00:00) in space (linearNDFast)
10:54:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:57 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 13:00:00) in space (linearNDFast)
10:54:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2869 elements, expanding data 1
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 131 elements, expanding data 2
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2869 elements, expanding data 1
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 131 elements, expanding data 2
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3083 elements, expanding data 1
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 635 elements, expanding data 2
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 129 elements, expanding data 3
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3083 elements, expanding data 1
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 635 elements, expanding data 2
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 129 elements, expanding data 3
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3083 elements, expanding data 1
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 635 elements, expanding data 2
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 129 elements, expanding data 3
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3083 elements, expanding data 1
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 635 elements, expanding data 2
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 129 elements, expanding data 3
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3083 elements, expanding data 1
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 635 elements, expanding data 2
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 129 elements, expanding data 3
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3083 elements, expanding data 1
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 635 elements, expanding data 2
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 129 elements, expanding data 3
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4269 elements, expanding data 1
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1306 elements, expanding data 2
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4269 elements, expanding data 1
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1306 elements, expanding data 2
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4269 elements, expanding data 1
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1306 elements, expanding data 2
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4269 elements, expanding data 1
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1306 elements, expanding data 2
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4269 elements, expanding data 1
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1306 elements, expanding data 2
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4269 elements, expanding data 1
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1306 elements, expanding data 2
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2869 elements, expanding data 1
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 131 elements, expanding data 2
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2869 elements, expanding data 1
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 131 elements, expanding data 2
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2869 elements, expanding data 1
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 131 elements, expanding data 2
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2869 elements, expanding data 1
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 131 elements, expanding data 2
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2869 elements, expanding data 1
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 131 elements, expanding data 2
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2869 elements, expanding data 1
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 131 elements, expanding data 2
10:54:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:54:57 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 12:00:00, weight 0.46) and
after (2023-08-22 13:00:00, weight 0.54) in time
10:54:57 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.160598164834305 and -58.95791120055247 degrees.
10:54:57 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.160598164834305 and -58.95791120055247 degrees.
10:54:57 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:57 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:57 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:57 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:57 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:57 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:57 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.773765 (min) 1.22951 (max)
10:54:57 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.04125 (min) 0.819514 (max)
10:54:57 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000316203 (min) 0.000508175 (max)
10:54:57 DEBUG opendrift.models.basemodel:1524: x_wind: -4.24016 (min) 9.51245 (max)
10:54:57 DEBUG opendrift.models.basemodel:1524: y_wind: -4.63895 (min) 10.851 (max)
10:54:57 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:57 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:57 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:57 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:57 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:57 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:57 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:57 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 31.3007 (max)
10:54:57 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:57 DEBUG opendrift.models.basemodel:1527: 5382 active elements
10:54:57 DEBUG opendrift.models.basemodel:1538: 59.09615664546207 <- latitude -> 59.18960191981053
10:54:57 DEBUG opendrift.models.basemodel:1543: 10.83941241686589 <- longitude -> 11.042099350303879
10:54:57 DEBUG opendrift.models.basemodel:1548: -21.592849731445312 <- z -> 0.0
10:54:57 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:57 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:57 DEBUG opendrift.models.physics_methods:940: min: 0.112918, mean: 4.128576, max: 10.146051
10:54:57 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.112918, mean: 4.128576, max: 10.146051
10:54:57 DEBUG opendrift.models.basemodel:813: 711 elements hit coastline, moving back to water
10:54:57 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:54:57 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:57 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:57 DEBUG opendrift.models.physics_methods:741: Advecting 39 of 5382 elements above 0.100m with wind-sheared ocean current (0.012155 m/s - 0.160766 m/s)
10:54:57 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:57 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:57 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.12738267642934797
10:54:57 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:57 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:57 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:57 DEBUG opendrift.models.oceandrift:572: 659 elements penetrated seafloor, lifting up
10:54:57 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:54:57 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:54:57 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:54:57 DEBUG opendrift.models.oceandrift:572: 509 elements penetrated seafloor, lifting up
10:54:57 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:54:57 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:54:57 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:54:57 DEBUG opendrift.models.oceandrift:572: 552 elements penetrated seafloor, lifting up
10:54:57 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:54:57 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:54:57 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:54:57 DEBUG opendrift.models.oceandrift:572: 490 elements penetrated seafloor, lifting up
10:54:57 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:54:57 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:54:57 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:54:57 DEBUG opendrift.models.oceandrift:572: 475 elements penetrated seafloor, lifting up
10:54:57 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:54:57 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:54:57 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:54:57 DEBUG opendrift.models.oceandrift:572: 466 elements penetrated seafloor, lifting up
10:54:57 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:54:57 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:54:57 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:54:57 DEBUG opendrift.models.oceandrift:572: 433 elements penetrated seafloor, lifting up
10:54:57 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:54:57 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:54:57 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:54:57 DEBUG opendrift.models.oceandrift:572: 450 elements penetrated seafloor, lifting up
10:54:57 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:54:57 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:54:57 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:54:57 DEBUG opendrift.models.oceandrift:572: 426 elements penetrated seafloor, lifting up
10:54:57 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:54:57 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:54:57 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:54:57 DEBUG opendrift.models.oceandrift:572: 399 elements penetrated seafloor, lifting up
10:54:57 DEBUG opendrift.models.oceandrift:590: 42 elements reached seafloor, set to bottom
10:54:57 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
10:54:57 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
10:54:57 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:57 DEBUG opendrift.models.basemodel:2945: 5382 active elements (0 deactivated)
10:54:57 DEBUG opendrift.models.basemodel:1658: to be seeded: 4618, already seeded 5382
10:54:57 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:57 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:57 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:57 DEBUG opendrift.models.basemodel:1253: Data needed for 5417 elements
10:54:57 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:57 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 12:00:00 (before)
2023-08-22 13:00:00 (after)
10:54:57 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 12:00:00) in space (linearNDFast)
10:54:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:57 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:57 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:57 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:57 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:57 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:57 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 29.9398 (max)
10:54:57 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:57 DEBUG opendrift.models.basemodel:1527: 5417 active elements
10:54:57 DEBUG opendrift.models.basemodel:1538: 59.09667707593159 <- latitude -> 59.19094542685977
10:54:57 DEBUG opendrift.models.basemodel:1543: 10.842411654199076 <- longitude -> 11.042953075210674
10:54:57 DEBUG opendrift.models.basemodel:1548: -19.445482482910155 <- z -> 0.0
10:54:57 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:57 DEBUG opendrift.models.basemodel:836: Lifting 358 elements to seafloor.
10:54:57 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:57 INFO opendrift.models.basemodel:2882: 2023-08-22 12:42:19.552469 - step 156 of 216 - 5417 active elements (0 deactivated)
10:54:57 DEBUG opendrift.models.basemodel:2888: 4583 elements scheduled.
10:54:57 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:57 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:57 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:57 DEBUG opendrift.models.basemodel:1253: Data needed for 5417 elements
10:54:57 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:57 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:57 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:57 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:57 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:57 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:57 DEBUG opendrift.models.basemodel:1253: Data needed for 5417 elements
10:54:57 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:57 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 12:00:00 (before)
2023-08-22 13:00:00 (after)
10:54:58 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:58 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:58 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:58 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:58 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:58 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:58 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x26x6) for time after (2023-08-22 13:00:00)
10:54:58 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 12:00:00) in space (linearNDFast)
10:54:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:58 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 13:00:00) in space (linearNDFast)
10:54:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2931 elements, expanding data 1
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 127 elements, expanding data 2
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2931 elements, expanding data 1
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 127 elements, expanding data 2
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3139 elements, expanding data 1
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 630 elements, expanding data 2
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 3
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3139 elements, expanding data 1
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 630 elements, expanding data 2
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 3
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3139 elements, expanding data 1
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 630 elements, expanding data 2
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 3
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3139 elements, expanding data 1
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 630 elements, expanding data 2
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 3
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3139 elements, expanding data 1
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 630 elements, expanding data 2
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 3
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3139 elements, expanding data 1
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 630 elements, expanding data 2
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 123 elements, expanding data 3
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4321 elements, expanding data 1
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1342 elements, expanding data 2
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4321 elements, expanding data 1
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1342 elements, expanding data 2
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4321 elements, expanding data 1
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1342 elements, expanding data 2
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4321 elements, expanding data 1
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1342 elements, expanding data 2
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4321 elements, expanding data 1
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1342 elements, expanding data 2
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4321 elements, expanding data 1
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1342 elements, expanding data 2
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2931 elements, expanding data 1
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 127 elements, expanding data 2
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2931 elements, expanding data 1
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 127 elements, expanding data 2
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2931 elements, expanding data 1
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 127 elements, expanding data 2
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2931 elements, expanding data 1
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 127 elements, expanding data 2
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2931 elements, expanding data 1
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 127 elements, expanding data 2
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2931 elements, expanding data 1
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 127 elements, expanding data 2
10:54:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:54:58 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 12:00:00, weight 0.29) and
after (2023-08-22 13:00:00, weight 0.71) in time
10:54:58 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.15759891944596 and -58.95705746327635 degrees.
10:54:58 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.15759891944596 and -58.95705746327635 degrees.
10:54:58 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:58 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:58 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:58 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:58 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:58 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:58 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.729421 (min) 1.08024 (max)
10:54:58 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.991835 (min) 0.832374 (max)
10:54:58 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000299031 (min) 0.000477603 (max)
10:54:58 DEBUG opendrift.models.basemodel:1524: x_wind: -5.79662 (min) 10.3176 (max)
10:54:58 DEBUG opendrift.models.basemodel:1524: y_wind: -3.94124 (min) 11.1549 (max)
10:54:58 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:58 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:58 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:58 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:58 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:58 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:58 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:58 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 29.9398 (max)
10:54:58 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:58 DEBUG opendrift.models.basemodel:1527: 5417 active elements
10:54:58 DEBUG opendrift.models.basemodel:1538: 59.09667707593159 <- latitude -> 59.19094542685977
10:54:58 DEBUG opendrift.models.basemodel:1543: 10.842411654199076 <- longitude -> 11.042953075210674
10:54:58 DEBUG opendrift.models.basemodel:1548: -19.445482482910155 <- z -> 0.0
10:54:58 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:58 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:58 DEBUG opendrift.models.physics_methods:940: min: 0.144568, mean: 4.094408, max: 9.782086
10:54:58 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.144568, mean: 4.094408, max: 9.782086
10:54:58 DEBUG opendrift.models.basemodel:813: 736 elements hit coastline, moving back to water
10:54:58 DEBUG opendrift.models.basemodel:836: Lifting 125 elements to seafloor.
10:54:58 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:58 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:58 DEBUG opendrift.models.physics_methods:741: Advecting 44 of 5417 elements above 0.100m with wind-sheared ocean current (0.000201 m/s - 0.195988 m/s)
10:54:58 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:58 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:58 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.11840777962263106
10:54:58 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:58 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:58 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:58 DEBUG opendrift.models.oceandrift:572: 660 elements penetrated seafloor, lifting up
10:54:58 DEBUG opendrift.models.oceandrift:590: 64 elements reached seafloor, set to bottom
10:54:58 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
10:54:58 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
10:54:58 DEBUG opendrift.models.oceandrift:572: 502 elements penetrated seafloor, lifting up
10:54:58 DEBUG opendrift.models.oceandrift:590: 62 elements reached seafloor, set to bottom
10:54:58 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
10:54:58 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
10:54:58 DEBUG opendrift.models.oceandrift:572: 493 elements penetrated seafloor, lifting up
10:54:58 DEBUG opendrift.models.oceandrift:590: 62 elements reached seafloor, set to bottom
10:54:58 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
10:54:58 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
10:54:58 DEBUG opendrift.models.oceandrift:572: 468 elements penetrated seafloor, lifting up
10:54:58 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:54:58 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:54:58 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:54:58 DEBUG opendrift.models.oceandrift:572: 470 elements penetrated seafloor, lifting up
10:54:58 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:54:58 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:54:58 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:54:58 DEBUG opendrift.models.oceandrift:572: 464 elements penetrated seafloor, lifting up
10:54:58 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:54:58 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:54:58 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:54:58 DEBUG opendrift.models.oceandrift:572: 456 elements penetrated seafloor, lifting up
10:54:58 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:54:58 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:54:58 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:54:58 DEBUG opendrift.models.oceandrift:572: 436 elements penetrated seafloor, lifting up
10:54:58 DEBUG opendrift.models.oceandrift:590: 53 elements reached seafloor, set to bottom
10:54:58 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
10:54:58 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
10:54:58 DEBUG opendrift.models.oceandrift:572: 389 elements penetrated seafloor, lifting up
10:54:58 DEBUG opendrift.models.oceandrift:590: 38 elements reached seafloor, set to bottom
10:54:58 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
10:54:58 DEBUG opendrift.models.sedimentdrift:112: Settling 38 elements at seafloor
10:54:58 DEBUG opendrift.models.oceandrift:572: 402 elements penetrated seafloor, lifting up
10:54:58 DEBUG opendrift.models.oceandrift:590: 39 elements reached seafloor, set to bottom
10:54:58 DEBUG opendrift.models.basemodel:836: Lifting 39 elements to seafloor.
10:54:58 DEBUG opendrift.models.sedimentdrift:112: Settling 39 elements at seafloor
10:54:58 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:58 DEBUG opendrift.models.basemodel:2945: 5417 active elements (0 deactivated)
10:54:58 DEBUG opendrift.models.basemodel:1658: to be seeded: 4583, already seeded 5417
10:54:58 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:54:58 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:58 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:58 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:58 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:58 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:58 DEBUG opendrift.models.basemodel:1253: Data needed for 5451 elements
10:54:58 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:58 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 12:00:00 (before)
2023-08-22 13:00:00 (after)
10:54:58 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 12:00:00) in space (linearNDFast)
10:54:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:58 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:58 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:58 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:58 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:58 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:58 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 30.9083 (max)
10:54:58 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:58 DEBUG opendrift.models.basemodel:1527: 5451 active elements
10:54:58 DEBUG opendrift.models.basemodel:1538: 59.09755174902848 <- latitude -> 59.1905819291428
10:54:58 DEBUG opendrift.models.basemodel:1543: 10.840218880429127 <- longitude -> 11.041798877739303
10:54:58 DEBUG opendrift.models.basemodel:1548: -19.90001500403935 <- z -> 0.0
10:54:58 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:58 DEBUG opendrift.models.basemodel:836: Lifting 340 elements to seafloor.
10:54:58 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:58 INFO opendrift.models.basemodel:2882: 2023-08-22 12:52:19.552469 - step 157 of 216 - 5451 active elements (0 deactivated)
10:54:58 DEBUG opendrift.models.basemodel:2888: 4549 elements scheduled.
10:54:58 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:58 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:58 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:58 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:58 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:58 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:58 DEBUG opendrift.models.basemodel:1253: Data needed for 5451 elements
10:54:58 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:58 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:58 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:58 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:58 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:58 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:58 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:58 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:58 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:58 DEBUG opendrift.models.basemodel:1253: Data needed for 5451 elements
10:54:58 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:58 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 12:00:00 (before)
2023-08-22 13:00:00 (after)
10:54:59 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:54:59 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:54:59 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:54:59 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:54:59 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:54:59 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:54:59 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x27x6) for time after (2023-08-22 13:00:00)
10:54:59 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 12:00:00) in space (linearNDFast)
10:54:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:59 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 13:00:00) in space (linearNDFast)
10:54:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3032 elements, expanding data 1
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 129 elements, expanding data 2
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3032 elements, expanding data 1
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 129 elements, expanding data 2
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3228 elements, expanding data 1
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 650 elements, expanding data 2
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 121 elements, expanding data 3
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3228 elements, expanding data 1
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 650 elements, expanding data 2
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 121 elements, expanding data 3
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3228 elements, expanding data 1
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 650 elements, expanding data 2
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 121 elements, expanding data 3
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3228 elements, expanding data 1
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 650 elements, expanding data 2
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 121 elements, expanding data 3
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3228 elements, expanding data 1
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 650 elements, expanding data 2
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 121 elements, expanding data 3
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3228 elements, expanding data 1
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 650 elements, expanding data 2
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 121 elements, expanding data 3
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4373 elements, expanding data 1
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1383 elements, expanding data 2
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4373 elements, expanding data 1
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1383 elements, expanding data 2
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4373 elements, expanding data 1
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1383 elements, expanding data 2
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4373 elements, expanding data 1
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1383 elements, expanding data 2
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4373 elements, expanding data 1
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1383 elements, expanding data 2
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4373 elements, expanding data 1
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1383 elements, expanding data 2
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3032 elements, expanding data 1
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 129 elements, expanding data 2
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3032 elements, expanding data 1
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 129 elements, expanding data 2
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3032 elements, expanding data 1
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 129 elements, expanding data 2
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3032 elements, expanding data 1
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 129 elements, expanding data 2
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3032 elements, expanding data 1
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 129 elements, expanding data 2
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3032 elements, expanding data 1
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 129 elements, expanding data 2
10:54:59 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:54:59 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 12:00:00, weight 0.13) and
after (2023-08-22 13:00:00, weight 0.87) in time
10:54:59 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.159791687934444 and -58.95821166052238 degrees.
10:54:59 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.159791687934444 and -58.95821166052238 degrees.
10:54:59 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:59 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:59 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:59 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:54:59 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:54:59 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:59 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.754731 (min) 1.0227 (max)
10:54:59 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.12137 (min) 0.817996 (max)
10:54:59 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000316449 (min) 0.000422706 (max)
10:54:59 DEBUG opendrift.models.basemodel:1524: x_wind: -4.28516 (min) 10.529 (max)
10:54:59 DEBUG opendrift.models.basemodel:1524: y_wind: -3.54028 (min) 9.81403 (max)
10:54:59 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:54:59 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:54:59 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:54:59 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:54:59 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:54:59 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:54:59 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:54:59 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 30.9083 (max)
10:54:59 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:59 DEBUG opendrift.models.basemodel:1527: 5451 active elements
10:54:59 DEBUG opendrift.models.basemodel:1538: 59.09755174902848 <- latitude -> 59.1905819291428
10:54:59 DEBUG opendrift.models.basemodel:1543: 10.840218880429127 <- longitude -> 11.041798877739303
10:54:59 DEBUG opendrift.models.basemodel:1548: -19.90001500403935 <- z -> 0.0
10:54:59 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:59 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:54:59 DEBUG opendrift.models.physics_methods:940: min: 0.076803, mean: 4.102955, max: 10.437250
10:54:59 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.076803, mean: 4.102955, max: 10.437250
10:54:59 DEBUG opendrift.models.basemodel:813: 736 elements hit coastline, moving back to water
10:54:59 DEBUG opendrift.models.basemodel:836: Lifting 10 elements to seafloor.
10:54:59 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:54:59 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:54:59 DEBUG opendrift.models.physics_methods:741: Advecting 36 of 5451 elements above 0.100m with wind-sheared ocean current (0.014592 m/s - 0.174270 m/s)
10:54:59 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:54:59 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:54:59 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.13479931887634275
10:54:59 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:54:59 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:54:59 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:54:59 DEBUG opendrift.models.oceandrift:572: 654 elements penetrated seafloor, lifting up
10:54:59 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:54:59 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:54:59 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:54:59 DEBUG opendrift.models.oceandrift:572: 520 elements penetrated seafloor, lifting up
10:54:59 DEBUG opendrift.models.oceandrift:590: 70 elements reached seafloor, set to bottom
10:54:59 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
10:54:59 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
10:54:59 DEBUG opendrift.models.oceandrift:572: 476 elements penetrated seafloor, lifting up
10:54:59 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:54:59 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:54:59 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:54:59 DEBUG opendrift.models.oceandrift:572: 463 elements penetrated seafloor, lifting up
10:54:59 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:54:59 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:54:59 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:54:59 DEBUG opendrift.models.oceandrift:572: 465 elements penetrated seafloor, lifting up
10:54:59 DEBUG opendrift.models.oceandrift:590: 40 elements reached seafloor, set to bottom
10:54:59 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
10:54:59 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
10:54:59 DEBUG opendrift.models.oceandrift:572: 465 elements penetrated seafloor, lifting up
10:54:59 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:54:59 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:54:59 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:54:59 DEBUG opendrift.models.oceandrift:572: 463 elements penetrated seafloor, lifting up
10:54:59 DEBUG opendrift.models.oceandrift:590: 60 elements reached seafloor, set to bottom
10:54:59 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
10:54:59 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
10:54:59 DEBUG opendrift.models.oceandrift:572: 414 elements penetrated seafloor, lifting up
10:54:59 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:54:59 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:54:59 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:54:59 DEBUG opendrift.models.oceandrift:572: 412 elements penetrated seafloor, lifting up
10:54:59 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:54:59 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:54:59 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:54:59 DEBUG opendrift.models.oceandrift:572: 432 elements penetrated seafloor, lifting up
10:54:59 DEBUG opendrift.models.oceandrift:590: 42 elements reached seafloor, set to bottom
10:54:59 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
10:54:59 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
10:54:59 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:54:59 DEBUG opendrift.models.basemodel:2945: 5451 active elements (0 deactivated)
10:54:59 DEBUG opendrift.models.basemodel:1658: to be seeded: 4549, already seeded 5451
10:54:59 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:54:59 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:59 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:54:59 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:59 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:59 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:59 DEBUG opendrift.models.basemodel:1253: Data needed for 5486 elements
10:54:59 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:59 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 13:00:00 (before)
2023-08-22 14:00:00 (after)
10:54:59 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 13:00:00) in space (linearNDFast)
10:54:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:54:59 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:54:59 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:59 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:54:59 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:54:59 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:54:59 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 31.2886 (max)
10:54:59 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:54:59 DEBUG opendrift.models.basemodel:1527: 5486 active elements
10:54:59 DEBUG opendrift.models.basemodel:1538: 59.09756049504722 <- latitude -> 59.19055174581216
10:54:59 DEBUG opendrift.models.basemodel:1543: 10.839226071728607 <- longitude -> 11.044689482187692
10:54:59 DEBUG opendrift.models.basemodel:1548: -27.15815929853725 <- z -> 0.0
10:54:59 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:54:59 DEBUG opendrift.models.basemodel:836: Lifting 342 elements to seafloor.
10:54:59 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:54:59 INFO opendrift.models.basemodel:2882: 2023-08-22 13:02:19.552469 - step 158 of 216 - 5486 active elements (0 deactivated)
10:54:59 DEBUG opendrift.models.basemodel:2888: 4514 elements scheduled.
10:54:59 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:54:59 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:59 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:54:59 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:59 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:54:59 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:59 DEBUG opendrift.models.basemodel:1253: Data needed for 5486 elements
10:54:59 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:54:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:54:59 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:54:59 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:54:59 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:54:59 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:54:59 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:54:59 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:54:59 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:59 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:54:59 DEBUG opendrift.models.basemodel:1253: Data needed for 5486 elements
10:54:59 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:54:59 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 13:00:00 (before)
2023-08-22 14:00:00 (after)
10:55:00 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:00 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:00 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:00 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:00 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:00 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:00 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x27x7) for time after (2023-08-22 14:00:00)
10:55:00 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 13:00:00) in space (linearNDFast)
10:55:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:00 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 14:00:00) in space (linearNDFast)
10:55:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3070 elements, expanding data 1
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 2
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3070 elements, expanding data 1
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 2
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3275 elements, expanding data 1
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 674 elements, expanding data 2
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 3
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3275 elements, expanding data 1
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 674 elements, expanding data 2
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 3
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3275 elements, expanding data 1
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 674 elements, expanding data 2
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 3
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3275 elements, expanding data 1
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 674 elements, expanding data 2
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 3
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3275 elements, expanding data 1
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 674 elements, expanding data 2
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 3
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3275 elements, expanding data 1
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 674 elements, expanding data 2
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 3
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3275 elements, expanding data 1
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 674 elements, expanding data 2
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 3
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4414 elements, expanding data 1
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1426 elements, expanding data 2
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4414 elements, expanding data 1
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1426 elements, expanding data 2
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4414 elements, expanding data 1
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1426 elements, expanding data 2
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4414 elements, expanding data 1
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1426 elements, expanding data 2
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4414 elements, expanding data 1
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1426 elements, expanding data 2
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4414 elements, expanding data 1
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1426 elements, expanding data 2
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4414 elements, expanding data 1
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1426 elements, expanding data 2
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3070 elements, expanding data 1
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 2
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3070 elements, expanding data 1
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 2
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3070 elements, expanding data 1
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 2
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3070 elements, expanding data 1
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 2
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3070 elements, expanding data 1
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 2
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3070 elements, expanding data 1
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 2
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3070 elements, expanding data 1
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 2
10:55:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:00 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 13:00:00, weight 0.96) and
after (2023-08-22 14:00:00, weight 0.04) in time
10:55:01 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.160784513572935 and -58.95532106701526 degrees.
10:55:01 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.160784513572935 and -58.95532106701526 degrees.
10:55:01 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:01 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:01 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:01 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:01 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:01 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:01 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.883108 (min) 1.03247 (max)
10:55:01 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.16363 (min) 0.796641 (max)
10:55:01 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000311561 (min) 0.000475801 (max)
10:55:01 DEBUG opendrift.models.basemodel:1524: x_wind: -5.07657 (min) 10.9171 (max)
10:55:01 DEBUG opendrift.models.basemodel:1524: y_wind: -4.18409 (min) 10.7307 (max)
10:55:01 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:01 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:01 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:01 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:01 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:01 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:01 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:01 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 31.2885 (max)
10:55:01 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:01 DEBUG opendrift.models.basemodel:1527: 5486 active elements
10:55:01 DEBUG opendrift.models.basemodel:1538: 59.09756049504722 <- latitude -> 59.19055174581216
10:55:01 DEBUG opendrift.models.basemodel:1543: 10.839226071728607 <- longitude -> 11.044689482187692
10:55:01 DEBUG opendrift.models.basemodel:1548: -27.15815929853725 <- z -> 0.0
10:55:01 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:01 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:01 DEBUG opendrift.models.physics_methods:940: min: 0.060314, mean: 4.081242, max: 10.348546
10:55:01 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.060314, mean: 4.081242, max: 10.348546
10:55:01 DEBUG opendrift.models.basemodel:813: 778 elements hit coastline, moving back to water
10:55:01 DEBUG opendrift.models.basemodel:836: Lifting 93 elements to seafloor.
10:55:01 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:01 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:01 DEBUG opendrift.models.physics_methods:741: Advecting 40 of 5486 elements above 0.100m with wind-sheared ocean current (0.001227 m/s - 0.185076 m/s)
10:55:01 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:01 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:01 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.132517882798748
10:55:01 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:01 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:01 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:01 DEBUG opendrift.models.oceandrift:572: 643 elements penetrated seafloor, lifting up
10:55:01 DEBUG opendrift.models.oceandrift:590: 67 elements reached seafloor, set to bottom
10:55:01 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
10:55:01 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
10:55:01 DEBUG opendrift.models.oceandrift:572: 530 elements penetrated seafloor, lifting up
10:55:01 DEBUG opendrift.models.oceandrift:590: 60 elements reached seafloor, set to bottom
10:55:01 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
10:55:01 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
10:55:01 DEBUG opendrift.models.oceandrift:572: 515 elements penetrated seafloor, lifting up
10:55:01 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:55:01 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:55:01 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:55:01 DEBUG opendrift.models.oceandrift:572: 501 elements penetrated seafloor, lifting up
10:55:01 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:55:01 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:55:01 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:55:01 DEBUG opendrift.models.oceandrift:572: 507 elements penetrated seafloor, lifting up
10:55:01 DEBUG opendrift.models.oceandrift:590: 63 elements reached seafloor, set to bottom
10:55:01 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
10:55:01 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
10:55:01 DEBUG opendrift.models.oceandrift:572: 444 elements penetrated seafloor, lifting up
10:55:01 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:55:01 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:55:01 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:55:01 DEBUG opendrift.models.oceandrift:572: 458 elements penetrated seafloor, lifting up
10:55:01 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:55:01 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:55:01 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:55:01 DEBUG opendrift.models.oceandrift:572: 475 elements penetrated seafloor, lifting up
10:55:01 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:55:01 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:55:01 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:55:01 DEBUG opendrift.models.oceandrift:572: 477 elements penetrated seafloor, lifting up
10:55:01 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:55:01 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:55:01 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:55:01 DEBUG opendrift.models.oceandrift:572: 448 elements penetrated seafloor, lifting up
10:55:01 DEBUG opendrift.models.oceandrift:590: 42 elements reached seafloor, set to bottom
10:55:01 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
10:55:01 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
10:55:01 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:01 DEBUG opendrift.models.basemodel:2945: 5486 active elements (0 deactivated)
10:55:01 DEBUG opendrift.models.basemodel:1658: to be seeded: 4514, already seeded 5486
10:55:01 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:01 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:01 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:01 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:01 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:01 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:01 DEBUG opendrift.models.basemodel:1253: Data needed for 5521 elements
10:55:01 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:01 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 13:00:00 (before)
2023-08-22 14:00:00 (after)
10:55:01 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 13:00:00) in space (linearNDFast)
10:55:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 1
10:55:01 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:01 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:01 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:01 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:01 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:01 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 30.9202 (max)
10:55:01 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:01 DEBUG opendrift.models.basemodel:1527: 5521 active elements
10:55:01 DEBUG opendrift.models.basemodel:1538: 59.09811179955169 <- latitude -> 59.19127882454934
10:55:01 DEBUG opendrift.models.basemodel:1543: 10.840005285169891 <- longitude -> 11.044935056415905
10:55:01 DEBUG opendrift.models.basemodel:1548: -27.68002225253368 <- z -> 0.0
10:55:01 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:01 DEBUG opendrift.models.basemodel:836: Lifting 348 elements to seafloor.
10:55:01 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:01 INFO opendrift.models.basemodel:2882: 2023-08-22 13:12:19.552469 - step 159 of 216 - 5521 active elements (0 deactivated)
10:55:01 DEBUG opendrift.models.basemodel:2888: 4479 elements scheduled.
10:55:01 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:01 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:01 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:01 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:01 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:01 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:01 DEBUG opendrift.models.basemodel:1253: Data needed for 5521 elements
10:55:01 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:01 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:01 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:01 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:01 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:01 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:01 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:01 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:01 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:01 DEBUG opendrift.models.basemodel:1253: Data needed for 5521 elements
10:55:01 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:01 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 13:00:00 (before)
2023-08-22 14:00:00 (after)
10:55:01 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:01 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:01 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:01 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:01 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:01 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:01 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x27x7) for time after (2023-08-22 14:00:00)
10:55:01 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 13:00:00) in space (linearNDFast)
10:55:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:01 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 14:00:00) in space (linearNDFast)
10:55:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3170 elements, expanding data 1
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 2
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3170 elements, expanding data 1
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 2
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3360 elements, expanding data 1
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 685 elements, expanding data 2
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 135 elements, expanding data 3
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3360 elements, expanding data 1
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 685 elements, expanding data 2
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 135 elements, expanding data 3
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3360 elements, expanding data 1
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 685 elements, expanding data 2
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 135 elements, expanding data 3
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3360 elements, expanding data 1
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 685 elements, expanding data 2
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 135 elements, expanding data 3
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3360 elements, expanding data 1
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 685 elements, expanding data 2
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 135 elements, expanding data 3
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3360 elements, expanding data 1
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 685 elements, expanding data 2
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 135 elements, expanding data 3
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3360 elements, expanding data 1
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 685 elements, expanding data 2
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 135 elements, expanding data 3
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4474 elements, expanding data 1
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1448 elements, expanding data 2
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4474 elements, expanding data 1
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1448 elements, expanding data 2
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4474 elements, expanding data 1
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1448 elements, expanding data 2
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4474 elements, expanding data 1
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1448 elements, expanding data 2
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4474 elements, expanding data 1
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1448 elements, expanding data 2
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4474 elements, expanding data 1
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1448 elements, expanding data 2
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4474 elements, expanding data 1
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1448 elements, expanding data 2
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3170 elements, expanding data 1
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 2
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3170 elements, expanding data 1
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 2
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3170 elements, expanding data 1
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 2
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3170 elements, expanding data 1
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 2
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3170 elements, expanding data 1
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 2
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3170 elements, expanding data 1
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 2
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3170 elements, expanding data 1
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 142 elements, expanding data 2
10:55:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:01 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 13:00:00, weight 0.79) and
after (2023-08-22 14:00:00, weight 0.21) in time
10:55:01 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.16000528915197 and -58.95507548907674 degrees.
10:55:01 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.16000528915197 and -58.95507548907674 degrees.
10:55:01 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:01 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:01 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:01 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:01 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:01 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:01 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.729834 (min) 1.01113 (max)
10:55:01 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.883304 (min) 0.855341 (max)
10:55:01 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000333776 (min) 0.000377593 (max)
10:55:01 DEBUG opendrift.models.basemodel:1524: x_wind: -4.9403 (min) 10.2009 (max)
10:55:01 DEBUG opendrift.models.basemodel:1524: y_wind: -3.6295 (min) 10.2397 (max)
10:55:01 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:01 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:01 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:01 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:01 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:01 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:01 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:01 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 30.9202 (max)
10:55:01 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:01 DEBUG opendrift.models.basemodel:1527: 5521 active elements
10:55:01 DEBUG opendrift.models.basemodel:1538: 59.09811179955169 <- latitude -> 59.19127882454934
10:55:01 DEBUG opendrift.models.basemodel:1543: 10.840005285169891 <- longitude -> 11.044935056415905
10:55:01 DEBUG opendrift.models.basemodel:1548: -27.68002225253368 <- z -> 0.0
10:55:01 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:01 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:01 DEBUG opendrift.models.physics_methods:940: min: 0.052302, mean: 4.064710, max: 10.173197
10:55:01 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.052302, mean: 4.064710, max: 10.173197
10:55:01 DEBUG opendrift.models.basemodel:813: 774 elements hit coastline, moving back to water
10:55:01 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:55:01 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:01 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:01 DEBUG opendrift.models.physics_methods:741: Advecting 41 of 5521 elements above 0.100m with wind-sheared ocean current (0.000843 m/s - 0.174566 m/s)
10:55:01 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:01 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:02 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.12806519782407758
10:55:02 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:02 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:02 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:02 DEBUG opendrift.models.oceandrift:572: 649 elements penetrated seafloor, lifting up
10:55:02 DEBUG opendrift.models.oceandrift:590: 67 elements reached seafloor, set to bottom
10:55:02 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
10:55:02 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
10:55:02 DEBUG opendrift.models.oceandrift:572: 534 elements penetrated seafloor, lifting up
10:55:02 DEBUG opendrift.models.oceandrift:590: 71 elements reached seafloor, set to bottom
10:55:02 DEBUG opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
10:55:02 DEBUG opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
10:55:02 DEBUG opendrift.models.oceandrift:572: 485 elements penetrated seafloor, lifting up
10:55:02 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:55:02 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:55:02 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:55:02 DEBUG opendrift.models.oceandrift:572: 462 elements penetrated seafloor, lifting up
10:55:02 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:55:02 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:55:02 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:55:02 DEBUG opendrift.models.oceandrift:572: 446 elements penetrated seafloor, lifting up
10:55:02 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:55:02 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:55:02 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:55:02 DEBUG opendrift.models.oceandrift:572: 486 elements penetrated seafloor, lifting up
10:55:02 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:55:02 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:55:02 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:55:02 DEBUG opendrift.models.oceandrift:572: 455 elements penetrated seafloor, lifting up
10:55:02 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:55:02 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:55:02 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:55:02 DEBUG opendrift.models.oceandrift:572: 448 elements penetrated seafloor, lifting up
10:55:02 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:55:02 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:55:02 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:55:02 DEBUG opendrift.models.oceandrift:572: 408 elements penetrated seafloor, lifting up
10:55:02 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:55:02 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:55:02 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:55:02 DEBUG opendrift.models.oceandrift:572: 443 elements penetrated seafloor, lifting up
10:55:02 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:55:02 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:55:02 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:55:02 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:02 DEBUG opendrift.models.basemodel:2945: 5521 active elements (0 deactivated)
10:55:02 DEBUG opendrift.models.basemodel:1658: to be seeded: 4479, already seeded 5521
10:55:02 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:02 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:02 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:02 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:02 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:02 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:02 DEBUG opendrift.models.basemodel:1253: Data needed for 5556 elements
10:55:02 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:02 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 13:00:00 (before)
2023-08-22 14:00:00 (after)
10:55:02 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 13:00:00) in space (linearNDFast)
10:55:02 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:02 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:02 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:02 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:02 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:02 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:02 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 29.8001 (max)
10:55:02 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:02 DEBUG opendrift.models.basemodel:1527: 5556 active elements
10:55:02 DEBUG opendrift.models.basemodel:1538: 59.096708550577766 <- latitude -> 59.190914508638826
10:55:02 DEBUG opendrift.models.basemodel:1543: 10.842725983473844 <- longitude -> 11.042712778906376
10:55:02 DEBUG opendrift.models.basemodel:1548: -28.5188979703597 <- z -> 0.0
10:55:02 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:02 DEBUG opendrift.models.basemodel:836: Lifting 372 elements to seafloor.
10:55:02 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:02 INFO opendrift.models.basemodel:2882: 2023-08-22 13:22:19.552469 - step 160 of 216 - 5556 active elements (0 deactivated)
10:55:02 DEBUG opendrift.models.basemodel:2888: 4444 elements scheduled.
10:55:02 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:02 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:02 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:02 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:02 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:02 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:02 DEBUG opendrift.models.basemodel:1253: Data needed for 5556 elements
10:55:02 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:02 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:02 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:02 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:02 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:02 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:02 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:02 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:02 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:02 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:02 DEBUG opendrift.models.basemodel:1253: Data needed for 5556 elements
10:55:02 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:02 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 13:00:00 (before)
2023-08-22 14:00:00 (after)
10:55:02 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:02 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:02 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:02 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:02 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:02 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:02 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x27x7) for time after (2023-08-22 14:00:00)
10:55:02 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 13:00:00) in space (linearNDFast)
10:55:02 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:02 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 14:00:00) in space (linearNDFast)
10:55:02 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3198 elements, expanding data 1
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3198 elements, expanding data 1
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3386 elements, expanding data 1
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 689 elements, expanding data 2
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 130 elements, expanding data 3
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3386 elements, expanding data 1
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 689 elements, expanding data 2
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 130 elements, expanding data 3
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3386 elements, expanding data 1
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 689 elements, expanding data 2
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 130 elements, expanding data 3
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3386 elements, expanding data 1
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 689 elements, expanding data 2
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 130 elements, expanding data 3
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3386 elements, expanding data 1
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 689 elements, expanding data 2
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 130 elements, expanding data 3
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3386 elements, expanding data 1
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 689 elements, expanding data 2
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 130 elements, expanding data 3
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3386 elements, expanding data 1
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 689 elements, expanding data 2
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 130 elements, expanding data 3
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4520 elements, expanding data 1
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1457 elements, expanding data 2
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4520 elements, expanding data 1
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1457 elements, expanding data 2
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4520 elements, expanding data 1
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1457 elements, expanding data 2
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4520 elements, expanding data 1
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1457 elements, expanding data 2
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4520 elements, expanding data 1
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1457 elements, expanding data 2
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4520 elements, expanding data 1
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1457 elements, expanding data 2
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4520 elements, expanding data 1
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1457 elements, expanding data 2
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3198 elements, expanding data 1
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3198 elements, expanding data 1
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3198 elements, expanding data 1
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3198 elements, expanding data 1
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3198 elements, expanding data 1
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3198 elements, expanding data 1
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3198 elements, expanding data 1
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 138 elements, expanding data 2
10:55:02 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:02 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 13:00:00, weight 0.63) and
after (2023-08-22 14:00:00, weight 0.37) in time
10:55:02 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.157284593011944 and -58.957297758148215 degrees.
10:55:02 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.157284593011944 and -58.957297758148215 degrees.
10:55:02 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:02 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:02 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:02 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:02 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:02 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:02 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.791603 (min) 1.24966 (max)
10:55:02 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.886668 (min) 0.982025 (max)
10:55:02 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000328453 (min) 0.000449161 (max)
10:55:02 DEBUG opendrift.models.basemodel:1524: x_wind: -5.80813 (min) 9.30648 (max)
10:55:02 DEBUG opendrift.models.basemodel:1524: y_wind: -4.14039 (min) 9.99604 (max)
10:55:02 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:02 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:02 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:02 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:02 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:02 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:02 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:02 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 29.8001 (max)
10:55:02 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:02 DEBUG opendrift.models.basemodel:1527: 5556 active elements
10:55:02 DEBUG opendrift.models.basemodel:1538: 59.096708550577766 <- latitude -> 59.190914508638826
10:55:02 DEBUG opendrift.models.basemodel:1543: 10.842725983473844 <- longitude -> 11.042712778906376
10:55:02 DEBUG opendrift.models.basemodel:1548: -28.5188979703597 <- z -> 0.0
10:55:02 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:02 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:02 DEBUG opendrift.models.physics_methods:940: min: 0.073528, mean: 3.969069, max: 9.550449
10:55:02 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.073528, mean: 3.969069, max: 9.550449
10:55:02 DEBUG opendrift.models.basemodel:813: 783 elements hit coastline, moving back to water
10:55:02 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
10:55:03 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:03 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:03 DEBUG opendrift.models.physics_methods:741: Advecting 43 of 5556 elements above 0.100m with wind-sheared ocean current (0.001349 m/s - 0.162223 m/s)
10:55:03 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:03 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:03 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.11286663209827423
10:55:03 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:03 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:03 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:03 DEBUG opendrift.models.oceandrift:572: 732 elements penetrated seafloor, lifting up
10:55:03 DEBUG opendrift.models.oceandrift:590: 68 elements reached seafloor, set to bottom
10:55:03 DEBUG opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
10:55:03 DEBUG opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
10:55:03 DEBUG opendrift.models.oceandrift:572: 533 elements penetrated seafloor, lifting up
10:55:03 DEBUG opendrift.models.oceandrift:590: 66 elements reached seafloor, set to bottom
10:55:03 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
10:55:03 DEBUG opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
10:55:03 DEBUG opendrift.models.oceandrift:572: 529 elements penetrated seafloor, lifting up
10:55:03 DEBUG opendrift.models.oceandrift:590: 68 elements reached seafloor, set to bottom
10:55:03 DEBUG opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
10:55:03 DEBUG opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
10:55:03 DEBUG opendrift.models.oceandrift:572: 529 elements penetrated seafloor, lifting up
10:55:03 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:55:03 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:55:03 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:55:03 DEBUG opendrift.models.oceandrift:572: 474 elements penetrated seafloor, lifting up
10:55:03 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:55:03 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:55:03 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:55:03 DEBUG opendrift.models.oceandrift:572: 481 elements penetrated seafloor, lifting up
10:55:03 DEBUG opendrift.models.oceandrift:590: 41 elements reached seafloor, set to bottom
10:55:03 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
10:55:03 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
10:55:03 DEBUG opendrift.models.oceandrift:572: 489 elements penetrated seafloor, lifting up
10:55:03 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:55:03 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:55:03 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:55:03 DEBUG opendrift.models.oceandrift:572: 451 elements penetrated seafloor, lifting up
10:55:03 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:55:03 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:55:03 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:55:03 DEBUG opendrift.models.oceandrift:572: 427 elements penetrated seafloor, lifting up
10:55:03 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:55:03 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:55:03 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:55:03 DEBUG opendrift.models.oceandrift:572: 430 elements penetrated seafloor, lifting up
10:55:03 DEBUG opendrift.models.oceandrift:590: 44 elements reached seafloor, set to bottom
10:55:03 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
10:55:03 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
10:55:03 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:03 DEBUG opendrift.models.basemodel:2945: 5556 active elements (0 deactivated)
10:55:03 DEBUG opendrift.models.basemodel:1658: to be seeded: 4444, already seeded 5556
10:55:03 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:55:03 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:03 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:03 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:03 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:03 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:03 DEBUG opendrift.models.basemodel:1253: Data needed for 5590 elements
10:55:03 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:03 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 13:00:00 (before)
2023-08-22 14:00:00 (after)
10:55:03 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 13:00:00) in space (linearNDFast)
10:55:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:03 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:03 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:03 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:03 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:03 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:03 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 29.4236 (max)
10:55:03 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:03 DEBUG opendrift.models.basemodel:1527: 5590 active elements
10:55:03 DEBUG opendrift.models.basemodel:1538: 59.09663664128989 <- latitude -> 59.18955729276373
10:55:03 DEBUG opendrift.models.basemodel:1543: 10.84150503447927 <- longitude -> 11.043345728780304
10:55:03 DEBUG opendrift.models.basemodel:1548: -25.642987055344808 <- z -> 0.0
10:55:03 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:03 DEBUG opendrift.models.basemodel:836: Lifting 385 elements to seafloor.
10:55:03 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:03 INFO opendrift.models.basemodel:2882: 2023-08-22 13:32:19.552469 - step 161 of 216 - 5590 active elements (0 deactivated)
10:55:03 DEBUG opendrift.models.basemodel:2888: 4410 elements scheduled.
10:55:03 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:03 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:03 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:03 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:03 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:03 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:03 DEBUG opendrift.models.basemodel:1253: Data needed for 5590 elements
10:55:03 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:03 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:03 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:03 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:03 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:03 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:03 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:03 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:03 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:03 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:03 DEBUG opendrift.models.basemodel:1253: Data needed for 5590 elements
10:55:03 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:03 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 13:00:00 (before)
2023-08-22 14:00:00 (after)
10:55:03 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:03 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:03 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:03 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:03 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:03 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:03 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x27x7) for time after (2023-08-22 14:00:00)
10:55:03 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 13:00:00) in space (linearNDFast)
10:55:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:03 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 14:00:00) in space (linearNDFast)
10:55:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3204 elements, expanding data 1
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 154 elements, expanding data 2
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3204 elements, expanding data 1
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 154 elements, expanding data 2
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3408 elements, expanding data 1
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 676 elements, expanding data 2
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 150 elements, expanding data 3
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3408 elements, expanding data 1
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 676 elements, expanding data 2
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 150 elements, expanding data 3
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3408 elements, expanding data 1
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 676 elements, expanding data 2
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 150 elements, expanding data 3
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3408 elements, expanding data 1
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 676 elements, expanding data 2
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 150 elements, expanding data 3
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3408 elements, expanding data 1
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 676 elements, expanding data 2
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 150 elements, expanding data 3
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3408 elements, expanding data 1
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 676 elements, expanding data 2
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 150 elements, expanding data 3
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3408 elements, expanding data 1
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 676 elements, expanding data 2
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 150 elements, expanding data 3
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4536 elements, expanding data 1
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1491 elements, expanding data 2
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4536 elements, expanding data 1
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1491 elements, expanding data 2
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4536 elements, expanding data 1
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1491 elements, expanding data 2
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4536 elements, expanding data 1
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1491 elements, expanding data 2
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4536 elements, expanding data 1
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1491 elements, expanding data 2
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4536 elements, expanding data 1
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1491 elements, expanding data 2
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4536 elements, expanding data 1
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1491 elements, expanding data 2
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3204 elements, expanding data 1
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 154 elements, expanding data 2
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3204 elements, expanding data 1
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 154 elements, expanding data 2
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3204 elements, expanding data 1
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 154 elements, expanding data 2
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3204 elements, expanding data 1
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 154 elements, expanding data 2
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3204 elements, expanding data 1
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 154 elements, expanding data 2
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3204 elements, expanding data 1
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 154 elements, expanding data 2
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3204 elements, expanding data 1
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 154 elements, expanding data 2
10:55:03 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:03 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 13:00:00, weight 0.46) and
after (2023-08-22 14:00:00, weight 0.54) in time
10:55:03 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.15850553683198 and -58.95666481060766 degrees.
10:55:03 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.15850553683198 and -58.95666481060766 degrees.
10:55:03 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:03 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:03 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:03 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:03 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:03 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:03 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.8602 (min) 0.902938 (max)
10:55:03 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.879366 (min) 0.865571 (max)
10:55:03 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000270281 (min) 0.00037835 (max)
10:55:03 DEBUG opendrift.models.basemodel:1524: x_wind: -5.38816 (min) 11.28 (max)
10:55:03 DEBUG opendrift.models.basemodel:1524: y_wind: -3.54726 (min) 9.99027 (max)
10:55:03 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:03 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:03 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:03 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:03 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:03 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:03 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:03 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 29.4236 (max)
10:55:03 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:03 DEBUG opendrift.models.basemodel:1527: 5590 active elements
10:55:03 DEBUG opendrift.models.basemodel:1538: 59.09663664128989 <- latitude -> 59.18955729276373
10:55:03 DEBUG opendrift.models.basemodel:1543: 10.84150503447927 <- longitude -> 11.043345728780304
10:55:03 DEBUG opendrift.models.basemodel:1548: -25.642987055344808 <- z -> 0.0
10:55:03 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:03 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:03 DEBUG opendrift.models.physics_methods:940: min: 0.086290, mean: 3.904237, max: 9.701581
10:55:03 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.086290, mean: 3.904237, max: 9.701581
10:55:03 DEBUG opendrift.models.basemodel:813: 803 elements hit coastline, moving back to water
10:55:03 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:55:03 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:03 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:03 DEBUG opendrift.models.physics_methods:741: Advecting 39 of 5590 elements above 0.100m with wind-sheared ocean current (0.008195 m/s - 0.184654 m/s)
10:55:03 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:03 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:03 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.11646692451055526
10:55:03 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:03 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:03 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:03 DEBUG opendrift.models.oceandrift:572: 654 elements penetrated seafloor, lifting up
10:55:03 DEBUG opendrift.models.oceandrift:590: 54 elements reached seafloor, set to bottom
10:55:03 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
10:55:03 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
10:55:03 DEBUG opendrift.models.oceandrift:572: 544 elements penetrated seafloor, lifting up
10:55:03 DEBUG opendrift.models.oceandrift:590: 62 elements reached seafloor, set to bottom
10:55:03 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
10:55:03 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
10:55:03 DEBUG opendrift.models.oceandrift:572: 511 elements penetrated seafloor, lifting up
10:55:03 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:55:03 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:55:03 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:55:03 DEBUG opendrift.models.oceandrift:572: 465 elements penetrated seafloor, lifting up
10:55:03 DEBUG opendrift.models.oceandrift:590: 53 elements reached seafloor, set to bottom
10:55:03 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
10:55:03 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
10:55:03 DEBUG opendrift.models.oceandrift:572: 436 elements penetrated seafloor, lifting up
10:55:03 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:55:03 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:55:03 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:55:03 DEBUG opendrift.models.oceandrift:572: 446 elements penetrated seafloor, lifting up
10:55:03 DEBUG opendrift.models.oceandrift:590: 42 elements reached seafloor, set to bottom
10:55:03 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
10:55:03 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
10:55:03 DEBUG opendrift.models.oceandrift:572: 444 elements penetrated seafloor, lifting up
10:55:03 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:55:03 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:55:03 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:55:03 DEBUG opendrift.models.oceandrift:572: 417 elements penetrated seafloor, lifting up
10:55:03 DEBUG opendrift.models.oceandrift:590: 53 elements reached seafloor, set to bottom
10:55:03 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
10:55:03 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
10:55:03 DEBUG opendrift.models.oceandrift:572: 439 elements penetrated seafloor, lifting up
10:55:03 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:55:03 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:55:03 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:55:03 DEBUG opendrift.models.oceandrift:572: 420 elements penetrated seafloor, lifting up
10:55:03 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:55:03 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:55:03 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:55:03 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:03 DEBUG opendrift.models.basemodel:2945: 5590 active elements (0 deactivated)
10:55:03 DEBUG opendrift.models.basemodel:1658: to be seeded: 4410, already seeded 5590
10:55:03 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:03 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:03 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:03 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:03 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:03 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:03 DEBUG opendrift.models.basemodel:1253: Data needed for 5625 elements
10:55:03 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:03 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 13:00:00 (before)
2023-08-22 14:00:00 (after)
10:55:03 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 13:00:00) in space (linearNDFast)
10:55:03 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:03 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:03 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:03 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:03 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:03 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:03 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 28.049 (max)
10:55:03 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:03 DEBUG opendrift.models.basemodel:1527: 5625 active elements
10:55:03 DEBUG opendrift.models.basemodel:1538: 59.096788602016474 <- latitude -> 59.18942765236294
10:55:03 DEBUG opendrift.models.basemodel:1543: 10.841352276016162 <- longitude -> 11.042074630259144
10:55:03 DEBUG opendrift.models.basemodel:1548: -26.49102879074047 <- z -> 0.0
10:55:03 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:03 DEBUG opendrift.models.basemodel:836: Lifting 373 elements to seafloor.
10:55:03 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:03 INFO opendrift.models.basemodel:2882: 2023-08-22 13:42:19.552469 - step 162 of 216 - 5625 active elements (0 deactivated)
10:55:03 DEBUG opendrift.models.basemodel:2888: 4375 elements scheduled.
10:55:03 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:03 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:03 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:03 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:03 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:03 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:03 DEBUG opendrift.models.basemodel:1253: Data needed for 5625 elements
10:55:03 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:04 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:04 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:04 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:04 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:04 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:04 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:04 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:04 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:04 DEBUG opendrift.models.basemodel:1253: Data needed for 5625 elements
10:55:04 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:04 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 13:00:00 (before)
2023-08-22 14:00:00 (after)
10:55:04 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:04 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:04 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:04 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:04 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:04 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:04 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x27x7) for time after (2023-08-22 14:00:00)
10:55:04 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 13:00:00) in space (linearNDFast)
10:55:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:04 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 14:00:00) in space (linearNDFast)
10:55:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3259 elements, expanding data 1
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 143 elements, expanding data 2
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3259 elements, expanding data 1
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 143 elements, expanding data 2
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3459 elements, expanding data 1
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 689 elements, expanding data 2
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 140 elements, expanding data 3
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3459 elements, expanding data 1
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 689 elements, expanding data 2
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 140 elements, expanding data 3
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3459 elements, expanding data 1
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 689 elements, expanding data 2
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 140 elements, expanding data 3
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3459 elements, expanding data 1
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 689 elements, expanding data 2
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 140 elements, expanding data 3
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3459 elements, expanding data 1
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 689 elements, expanding data 2
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 140 elements, expanding data 3
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3459 elements, expanding data 1
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 689 elements, expanding data 2
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 140 elements, expanding data 3
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3459 elements, expanding data 1
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 689 elements, expanding data 2
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 140 elements, expanding data 3
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4585 elements, expanding data 1
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1510 elements, expanding data 2
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4585 elements, expanding data 1
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1510 elements, expanding data 2
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4585 elements, expanding data 1
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1510 elements, expanding data 2
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4585 elements, expanding data 1
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1510 elements, expanding data 2
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4585 elements, expanding data 1
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1510 elements, expanding data 2
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4585 elements, expanding data 1
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1510 elements, expanding data 2
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4585 elements, expanding data 1
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1510 elements, expanding data 2
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3259 elements, expanding data 1
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 143 elements, expanding data 2
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3259 elements, expanding data 1
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 143 elements, expanding data 2
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3259 elements, expanding data 1
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 143 elements, expanding data 2
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3259 elements, expanding data 1
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 143 elements, expanding data 2
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3259 elements, expanding data 1
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 143 elements, expanding data 2
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3259 elements, expanding data 1
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 143 elements, expanding data 2
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3259 elements, expanding data 1
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 143 elements, expanding data 2
10:55:04 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:04 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 13:00:00, weight 0.29) and
after (2023-08-22 14:00:00, weight 0.71) in time
10:55:04 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.158658300554904 and -58.95793592473515 degrees.
10:55:04 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.158658300554904 and -58.95793592473515 degrees.
10:55:04 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:04 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:04 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:04 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:04 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:04 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:04 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.738731 (min) 1.17886 (max)
10:55:04 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.922003 (min) 1.038 (max)
10:55:04 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000323207 (min) 0.000405881 (max)
10:55:04 DEBUG opendrift.models.basemodel:1524: x_wind: -4.30349 (min) 9.93187 (max)
10:55:04 DEBUG opendrift.models.basemodel:1524: y_wind: -3.87655 (min) 11.5473 (max)
10:55:04 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:04 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:04 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:04 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:04 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:04 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:04 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:04 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 28.049 (max)
10:55:04 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:04 DEBUG opendrift.models.basemodel:1527: 5625 active elements
10:55:04 DEBUG opendrift.models.basemodel:1538: 59.096788602016474 <- latitude -> 59.18942765236294
10:55:04 DEBUG opendrift.models.basemodel:1543: 10.841352276016162 <- longitude -> 11.042074630259144
10:55:04 DEBUG opendrift.models.basemodel:1548: -26.49102879074047 <- z -> 0.0
10:55:04 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:04 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:04 DEBUG opendrift.models.physics_methods:940: min: 0.064401, mean: 3.868947, max: 9.979404
10:55:04 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.064401, mean: 3.868947, max: 9.979404
10:55:04 DEBUG opendrift.models.basemodel:813: 775 elements hit coastline, moving back to water
10:55:04 DEBUG opendrift.models.basemodel:836: Lifting 147 elements to seafloor.
10:55:04 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:04 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:04 DEBUG opendrift.models.physics_methods:741: Advecting 37 of 5625 elements above 0.100m with wind-sheared ocean current (0.001104 m/s - 0.161368 m/s)
10:55:04 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:04 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:04 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.1232326928182411
10:55:04 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:04 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:04 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:04 DEBUG opendrift.models.oceandrift:572: 704 elements penetrated seafloor, lifting up
10:55:04 DEBUG opendrift.models.oceandrift:590: 79 elements reached seafloor, set to bottom
10:55:04 DEBUG opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
10:55:04 DEBUG opendrift.models.sedimentdrift:112: Settling 79 elements at seafloor
10:55:04 DEBUG opendrift.models.oceandrift:572: 540 elements penetrated seafloor, lifting up
10:55:04 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:55:04 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:55:04 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:55:04 DEBUG opendrift.models.oceandrift:572: 518 elements penetrated seafloor, lifting up
10:55:04 DEBUG opendrift.models.oceandrift:590: 64 elements reached seafloor, set to bottom
10:55:04 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
10:55:04 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
10:55:04 DEBUG opendrift.models.oceandrift:572: 485 elements penetrated seafloor, lifting up
10:55:04 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:55:04 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:55:04 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:55:04 DEBUG opendrift.models.oceandrift:572: 483 elements penetrated seafloor, lifting up
10:55:04 DEBUG opendrift.models.oceandrift:590: 60 elements reached seafloor, set to bottom
10:55:04 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
10:55:04 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
10:55:04 DEBUG opendrift.models.oceandrift:572: 473 elements penetrated seafloor, lifting up
10:55:04 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:55:04 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:55:04 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:55:04 DEBUG opendrift.models.oceandrift:572: 460 elements penetrated seafloor, lifting up
10:55:04 DEBUG opendrift.models.oceandrift:590: 60 elements reached seafloor, set to bottom
10:55:04 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
10:55:04 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
10:55:04 DEBUG opendrift.models.oceandrift:572: 415 elements penetrated seafloor, lifting up
10:55:04 DEBUG opendrift.models.oceandrift:590: 53 elements reached seafloor, set to bottom
10:55:04 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
10:55:04 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
10:55:04 DEBUG opendrift.models.oceandrift:572: 445 elements penetrated seafloor, lifting up
10:55:04 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:55:04 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:55:04 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:55:04 DEBUG opendrift.models.oceandrift:572: 397 elements penetrated seafloor, lifting up
10:55:04 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:55:04 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:55:04 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:55:04 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:04 DEBUG opendrift.models.basemodel:2945: 5625 active elements (0 deactivated)
10:55:04 DEBUG opendrift.models.basemodel:1658: to be seeded: 4375, already seeded 5625
10:55:04 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:04 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:04 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:04 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:04 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:04 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:04 DEBUG opendrift.models.basemodel:1253: Data needed for 5660 elements
10:55:04 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:04 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 13:00:00 (before)
2023-08-22 14:00:00 (after)
10:55:04 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 13:00:00) in space (linearNDFast)
10:55:04 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:04 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:04 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:04 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:04 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:04 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:04 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 28.483 (max)
10:55:04 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:04 DEBUG opendrift.models.basemodel:1527: 5660 active elements
10:55:04 DEBUG opendrift.models.basemodel:1538: 59.0991243213483 <- latitude -> 59.189516568271344
10:55:04 DEBUG opendrift.models.basemodel:1543: 10.84216051793492 <- longitude -> 11.040174998356804
10:55:04 DEBUG opendrift.models.basemodel:1548: -27.65038172265934 <- z -> 0.0
10:55:04 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:04 DEBUG opendrift.models.basemodel:836: Lifting 421 elements to seafloor.
10:55:04 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:04 INFO opendrift.models.basemodel:2882: 2023-08-22 13:52:19.552469 - step 163 of 216 - 5660 active elements (0 deactivated)
10:55:04 DEBUG opendrift.models.basemodel:2888: 4340 elements scheduled.
10:55:04 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:04 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:04 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:04 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:04 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:04 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:04 DEBUG opendrift.models.basemodel:1253: Data needed for 5660 elements
10:55:04 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:04 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:04 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:04 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:04 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:04 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:04 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:04 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:04 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:04 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:04 DEBUG opendrift.models.basemodel:1253: Data needed for 5660 elements
10:55:04 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:04 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 13:00:00 (before)
2023-08-22 14:00:00 (after)
10:55:05 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:05 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:05 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:05 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:05 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:05 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:05 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x27x7) for time after (2023-08-22 14:00:00)
10:55:05 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 13:00:00) in space (linearNDFast)
10:55:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:05 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 14:00:00) in space (linearNDFast)
10:55:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3338 elements, expanding data 1
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 2
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3338 elements, expanding data 1
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 2
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3555 elements, expanding data 1
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 696 elements, expanding data 2
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 141 elements, expanding data 3
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3555 elements, expanding data 1
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 696 elements, expanding data 2
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 141 elements, expanding data 3
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3555 elements, expanding data 1
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 696 elements, expanding data 2
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 141 elements, expanding data 3
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3555 elements, expanding data 1
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 696 elements, expanding data 2
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 141 elements, expanding data 3
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3555 elements, expanding data 1
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 696 elements, expanding data 2
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 141 elements, expanding data 3
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3555 elements, expanding data 1
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 696 elements, expanding data 2
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 141 elements, expanding data 3
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3555 elements, expanding data 1
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 696 elements, expanding data 2
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 141 elements, expanding data 3
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4614 elements, expanding data 1
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1571 elements, expanding data 2
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4614 elements, expanding data 1
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1571 elements, expanding data 2
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4614 elements, expanding data 1
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1571 elements, expanding data 2
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4614 elements, expanding data 1
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1571 elements, expanding data 2
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4614 elements, expanding data 1
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1571 elements, expanding data 2
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4614 elements, expanding data 1
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1571 elements, expanding data 2
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4614 elements, expanding data 1
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1571 elements, expanding data 2
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3338 elements, expanding data 1
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 2
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3338 elements, expanding data 1
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 2
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3338 elements, expanding data 1
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 2
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3338 elements, expanding data 1
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 2
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3338 elements, expanding data 1
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 2
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3338 elements, expanding data 1
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 2
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3338 elements, expanding data 1
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 147 elements, expanding data 2
10:55:05 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:05 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 13:00:00, weight 0.13) and
after (2023-08-22 14:00:00, weight 0.87) in time
10:55:05 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.15785005637403 and -58.959835540197574 degrees.
10:55:05 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.15785005637403 and -58.959835540197574 degrees.
10:55:05 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:05 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:05 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:05 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:05 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:05 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:05 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.844489 (min) 1.0676 (max)
10:55:05 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.962885 (min) 0.822569 (max)
10:55:05 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000312356 (min) 0.000417009 (max)
10:55:05 DEBUG opendrift.models.basemodel:1524: x_wind: -5.07 (min) 8.96454 (max)
10:55:05 DEBUG opendrift.models.basemodel:1524: y_wind: -4.54929 (min) 11.0405 (max)
10:55:05 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:05 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:05 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:05 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:05 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:05 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:05 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:05 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 28.483 (max)
10:55:05 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:05 DEBUG opendrift.models.basemodel:1527: 5660 active elements
10:55:05 DEBUG opendrift.models.basemodel:1538: 59.0991243213483 <- latitude -> 59.189516568271344
10:55:05 DEBUG opendrift.models.basemodel:1543: 10.84216051793492 <- longitude -> 11.040174998356804
10:55:05 DEBUG opendrift.models.basemodel:1548: -27.65038172265934 <- z -> 0.0
10:55:05 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:05 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:05 DEBUG opendrift.models.physics_methods:940: min: 0.076638, mean: 3.824828, max: 9.605216
10:55:05 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.076638, mean: 3.824828, max: 9.605216
10:55:05 DEBUG opendrift.models.basemodel:813: 864 elements hit coastline, moving back to water
10:55:05 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
10:55:05 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:05 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:05 DEBUG opendrift.models.physics_methods:741: Advecting 41 of 5660 elements above 0.100m with wind-sheared ocean current (0.005614 m/s - 0.164569 m/s)
10:55:05 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:05 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:05 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.1141647963362503
10:55:05 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:05 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:05 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:05 DEBUG opendrift.models.oceandrift:572: 666 elements penetrated seafloor, lifting up
10:55:05 DEBUG opendrift.models.oceandrift:590: 60 elements reached seafloor, set to bottom
10:55:05 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
10:55:05 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
10:55:05 DEBUG opendrift.models.oceandrift:572: 538 elements penetrated seafloor, lifting up
10:55:05 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:55:05 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:55:05 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:55:05 DEBUG opendrift.models.oceandrift:572: 527 elements penetrated seafloor, lifting up
10:55:05 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:55:05 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:55:05 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:55:05 DEBUG opendrift.models.oceandrift:572: 510 elements penetrated seafloor, lifting up
10:55:05 DEBUG opendrift.models.oceandrift:590: 64 elements reached seafloor, set to bottom
10:55:05 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
10:55:05 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
10:55:05 DEBUG opendrift.models.oceandrift:572: 475 elements penetrated seafloor, lifting up
10:55:05 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:55:05 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:55:05 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:55:05 DEBUG opendrift.models.oceandrift:572: 475 elements penetrated seafloor, lifting up
10:55:05 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:55:05 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:55:05 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:55:05 DEBUG opendrift.models.oceandrift:572: 449 elements penetrated seafloor, lifting up
10:55:05 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:55:05 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:55:05 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:55:05 DEBUG opendrift.models.oceandrift:572: 448 elements penetrated seafloor, lifting up
10:55:05 DEBUG opendrift.models.oceandrift:590: 65 elements reached seafloor, set to bottom
10:55:05 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
10:55:05 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
10:55:05 DEBUG opendrift.models.oceandrift:572: 432 elements penetrated seafloor, lifting up
10:55:05 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:55:05 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:55:05 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:55:05 DEBUG opendrift.models.oceandrift:572: 435 elements penetrated seafloor, lifting up
10:55:05 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:55:05 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:55:05 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:55:05 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:05 DEBUG opendrift.models.basemodel:2945: 5660 active elements (0 deactivated)
10:55:05 DEBUG opendrift.models.basemodel:1658: to be seeded: 4340, already seeded 5660
10:55:05 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:55:05 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:05 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:05 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:05 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:05 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:05 DEBUG opendrift.models.basemodel:1253: Data needed for 5694 elements
10:55:05 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:05 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 14:00:00 (before)
2023-08-22 15:00:00 (after)
10:55:05 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 14:00:00) in space (linearNDFast)
10:55:05 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:05 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:05 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:05 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:05 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:05 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:05 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 27.8779 (max)
10:55:05 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:05 DEBUG opendrift.models.basemodel:1527: 5694 active elements
10:55:05 DEBUG opendrift.models.basemodel:1538: 59.098856942568204 <- latitude -> 59.18972765672481
10:55:05 DEBUG opendrift.models.basemodel:1543: 10.841622978803082 <- longitude -> 11.038534505757632
10:55:05 DEBUG opendrift.models.basemodel:1548: -27.87043138480745 <- z -> 0.0
10:55:05 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:05 DEBUG opendrift.models.basemodel:836: Lifting 384 elements to seafloor.
10:55:05 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:05 INFO opendrift.models.basemodel:2882: 2023-08-22 14:02:19.552469 - step 164 of 216 - 5694 active elements (0 deactivated)
10:55:05 DEBUG opendrift.models.basemodel:2888: 4306 elements scheduled.
10:55:05 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:05 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:05 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:05 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:05 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:05 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:05 DEBUG opendrift.models.basemodel:1253: Data needed for 5694 elements
10:55:05 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:05 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:05 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:05 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:05 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:05 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:05 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:05 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:05 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:05 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:05 DEBUG opendrift.models.basemodel:1253: Data needed for 5694 elements
10:55:05 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:05 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 14:00:00 (before)
2023-08-22 15:00:00 (after)
10:55:07 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:07 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:07 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:07 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:07 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:07 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:07 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x27x7) for time after (2023-08-22 15:00:00)
10:55:07 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 14:00:00) in space (linearNDFast)
10:55:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:07 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 15:00:00) in space (linearNDFast)
10:55:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3410 elements, expanding data 1
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 144 elements, expanding data 2
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3410 elements, expanding data 1
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 144 elements, expanding data 2
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3629 elements, expanding data 1
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 696 elements, expanding data 2
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 140 elements, expanding data 3
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3629 elements, expanding data 1
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 696 elements, expanding data 2
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 140 elements, expanding data 3
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3629 elements, expanding data 1
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 696 elements, expanding data 2
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 140 elements, expanding data 3
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3629 elements, expanding data 1
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 696 elements, expanding data 2
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 140 elements, expanding data 3
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3629 elements, expanding data 1
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 696 elements, expanding data 2
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 140 elements, expanding data 3
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3629 elements, expanding data 1
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 696 elements, expanding data 2
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 140 elements, expanding data 3
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3629 elements, expanding data 1
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 696 elements, expanding data 2
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 140 elements, expanding data 3
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4681 elements, expanding data 1
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1613 elements, expanding data 2
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4681 elements, expanding data 1
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1613 elements, expanding data 2
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4681 elements, expanding data 1
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1613 elements, expanding data 2
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4681 elements, expanding data 1
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1613 elements, expanding data 2
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4681 elements, expanding data 1
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1613 elements, expanding data 2
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4681 elements, expanding data 1
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1613 elements, expanding data 2
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4681 elements, expanding data 1
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1613 elements, expanding data 2
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3410 elements, expanding data 1
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 144 elements, expanding data 2
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3410 elements, expanding data 1
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 144 elements, expanding data 2
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3410 elements, expanding data 1
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 144 elements, expanding data 2
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3410 elements, expanding data 1
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 144 elements, expanding data 2
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3410 elements, expanding data 1
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 144 elements, expanding data 2
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3410 elements, expanding data 1
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 144 elements, expanding data 2
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3410 elements, expanding data 1
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 144 elements, expanding data 2
10:55:07 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:07 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 14:00:00, weight 0.96) and
after (2023-08-22 15:00:00, weight 0.04) in time
10:55:07 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.158387586234475 and -58.96147602906094 degrees.
10:55:07 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.158387586234475 and -58.96147602906094 degrees.
10:55:07 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:07 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:07 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:07 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:07 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:07 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:07 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.819542 (min) 1.02252 (max)
10:55:07 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.973067 (min) 1.00158 (max)
10:55:07 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000378218 (min) 0.00036498 (max)
10:55:07 DEBUG opendrift.models.basemodel:1524: x_wind: -5.56993 (min) 8.60708 (max)
10:55:07 DEBUG opendrift.models.basemodel:1524: y_wind: -3.96962 (min) 12.2929 (max)
10:55:07 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:07 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:07 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:07 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:07 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:07 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:07 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:07 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 27.8779 (max)
10:55:07 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:07 DEBUG opendrift.models.basemodel:1527: 5694 active elements
10:55:07 DEBUG opendrift.models.basemodel:1538: 59.098856942568204 <- latitude -> 59.18972765672481
10:55:07 DEBUG opendrift.models.basemodel:1543: 10.841622978803082 <- longitude -> 11.038534505757632
10:55:07 DEBUG opendrift.models.basemodel:1548: -27.87043138480745 <- z -> 0.0
10:55:07 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:07 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:07 DEBUG opendrift.models.physics_methods:940: min: 0.055391, mean: 3.758758, max: 10.518790
10:55:07 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.055391, mean: 3.758758, max: 10.518790
10:55:07 DEBUG opendrift.models.basemodel:813: 818 elements hit coastline, moving back to water
10:55:07 DEBUG opendrift.models.basemodel:836: Lifting 111 elements to seafloor.
10:55:07 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:07 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:07 DEBUG opendrift.models.physics_methods:741: Advecting 38 of 5694 elements above 0.100m with wind-sheared ocean current (0.010393 m/s - 0.180090 m/s)
10:55:07 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:07 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:07 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.13691369099052428
10:55:07 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:07 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:07 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:07 DEBUG opendrift.models.oceandrift:572: 676 elements penetrated seafloor, lifting up
10:55:07 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:55:07 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:55:07 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:55:07 DEBUG opendrift.models.oceandrift:572: 543 elements penetrated seafloor, lifting up
10:55:07 DEBUG opendrift.models.oceandrift:590: 81 elements reached seafloor, set to bottom
10:55:07 DEBUG opendrift.models.basemodel:836: Lifting 81 elements to seafloor.
10:55:07 DEBUG opendrift.models.sedimentdrift:112: Settling 81 elements at seafloor
10:55:07 DEBUG opendrift.models.oceandrift:572: 488 elements penetrated seafloor, lifting up
10:55:07 DEBUG opendrift.models.oceandrift:590: 53 elements reached seafloor, set to bottom
10:55:07 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
10:55:07 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
10:55:07 DEBUG opendrift.models.oceandrift:572: 496 elements penetrated seafloor, lifting up
10:55:07 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:55:07 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:55:07 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:55:07 DEBUG opendrift.models.oceandrift:572: 482 elements penetrated seafloor, lifting up
10:55:07 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:55:07 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:55:07 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:55:07 DEBUG opendrift.models.oceandrift:572: 496 elements penetrated seafloor, lifting up
10:55:07 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:55:07 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:55:07 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:55:07 DEBUG opendrift.models.oceandrift:572: 422 elements penetrated seafloor, lifting up
10:55:07 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:55:07 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:55:07 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:55:07 DEBUG opendrift.models.oceandrift:572: 443 elements penetrated seafloor, lifting up
10:55:07 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:55:07 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:55:07 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:55:07 DEBUG opendrift.models.oceandrift:572: 448 elements penetrated seafloor, lifting up
10:55:07 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:55:07 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:55:07 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:55:07 DEBUG opendrift.models.oceandrift:572: 450 elements penetrated seafloor, lifting up
10:55:07 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:55:07 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:55:07 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:55:07 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:07 DEBUG opendrift.models.basemodel:2945: 5694 active elements (0 deactivated)
10:55:07 DEBUG opendrift.models.basemodel:1658: to be seeded: 4306, already seeded 5694
10:55:07 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:07 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:07 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:07 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:07 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:07 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:07 DEBUG opendrift.models.basemodel:1253: Data needed for 5729 elements
10:55:07 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:07 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 14:00:00 (before)
2023-08-22 15:00:00 (after)
10:55:07 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 14:00:00) in space (linearNDFast)
10:55:07 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:07 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:07 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:07 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:07 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:07 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:07 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 28.7336 (max)
10:55:07 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:07 DEBUG opendrift.models.basemodel:1527: 5729 active elements
10:55:07 DEBUG opendrift.models.basemodel:1538: 59.09703583359128 <- latitude -> 59.189698840107994
10:55:07 DEBUG opendrift.models.basemodel:1543: 10.842614667822629 <- longitude -> 11.040914128566762
10:55:07 DEBUG opendrift.models.basemodel:1548: -26.130236684802483 <- z -> 0.0
10:55:07 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:07 DEBUG opendrift.models.basemodel:836: Lifting 387 elements to seafloor.
10:55:07 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:07 INFO opendrift.models.basemodel:2882: 2023-08-22 14:12:19.552469 - step 165 of 216 - 5729 active elements (0 deactivated)
10:55:07 DEBUG opendrift.models.basemodel:2888: 4271 elements scheduled.
10:55:07 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:07 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:07 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:07 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:07 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:07 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:07 DEBUG opendrift.models.basemodel:1253: Data needed for 5729 elements
10:55:07 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:07 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:07 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:07 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:07 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:07 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:07 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:07 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:07 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:07 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:07 DEBUG opendrift.models.basemodel:1253: Data needed for 5729 elements
10:55:07 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:07 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 14:00:00 (before)
2023-08-22 15:00:00 (after)
10:55:08 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:08 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:08 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:08 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:08 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:08 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:08 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x27x7) for time after (2023-08-22 15:00:00)
10:55:08 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 14:00:00) in space (linearNDFast)
10:55:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:08 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 15:00:00) in space (linearNDFast)
10:55:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3464 elements, expanding data 1
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 2
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3464 elements, expanding data 1
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 2
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3670 elements, expanding data 1
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 724 elements, expanding data 2
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 152 elements, expanding data 3
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3670 elements, expanding data 1
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 724 elements, expanding data 2
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 152 elements, expanding data 3
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3670 elements, expanding data 1
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 724 elements, expanding data 2
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 152 elements, expanding data 3
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3670 elements, expanding data 1
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 724 elements, expanding data 2
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 152 elements, expanding data 3
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3670 elements, expanding data 1
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 724 elements, expanding data 2
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 152 elements, expanding data 3
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3670 elements, expanding data 1
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 724 elements, expanding data 2
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 152 elements, expanding data 3
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3670 elements, expanding data 1
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 724 elements, expanding data 2
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 152 elements, expanding data 3
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4724 elements, expanding data 1
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1640 elements, expanding data 2
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4724 elements, expanding data 1
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1640 elements, expanding data 2
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4724 elements, expanding data 1
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1640 elements, expanding data 2
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4724 elements, expanding data 1
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1640 elements, expanding data 2
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4724 elements, expanding data 1
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1640 elements, expanding data 2
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4724 elements, expanding data 1
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1640 elements, expanding data 2
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4724 elements, expanding data 1
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1640 elements, expanding data 2
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3464 elements, expanding data 1
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 2
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3464 elements, expanding data 1
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 2
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3464 elements, expanding data 1
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 2
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3464 elements, expanding data 1
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 2
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3464 elements, expanding data 1
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 2
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3464 elements, expanding data 1
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 2
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3464 elements, expanding data 1
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 2
10:55:08 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:08 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 14:00:00, weight 0.79) and
after (2023-08-22 15:00:00, weight 0.21) in time
10:55:08 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.1573959082279 and -58.95909641397076 degrees.
10:55:08 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.1573959082279 and -58.95909641397076 degrees.
10:55:08 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:08 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:08 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:08 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:08 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:08 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:08 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.874441 (min) 0.992657 (max)
10:55:08 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.03003 (min) 0.863574 (max)
10:55:08 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000389433 (min) 0.000374318 (max)
10:55:08 DEBUG opendrift.models.basemodel:1524: x_wind: -6.11362 (min) 11.6184 (max)
10:55:08 DEBUG opendrift.models.basemodel:1524: y_wind: -5.10734 (min) 11.3897 (max)
10:55:08 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:08 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:08 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:08 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:08 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:08 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:08 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:08 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 28.7336 (max)
10:55:08 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:08 DEBUG opendrift.models.basemodel:1527: 5729 active elements
10:55:08 DEBUG opendrift.models.basemodel:1538: 59.09703583359128 <- latitude -> 59.189698840107994
10:55:08 DEBUG opendrift.models.basemodel:1543: 10.842614667822629 <- longitude -> 11.040914128566762
10:55:08 DEBUG opendrift.models.basemodel:1548: -26.130236684802483 <- z -> 0.0
10:55:08 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:08 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:08 DEBUG opendrift.models.physics_methods:940: min: 0.006916, mean: 3.923368, max: 10.984300
10:55:08 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.006916, mean: 3.923368, max: 10.984300
10:55:08 DEBUG opendrift.models.basemodel:813: 870 elements hit coastline, moving back to water
10:55:08 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:55:08 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:08 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:08 DEBUG opendrift.models.physics_methods:741: Advecting 46 of 5729 elements above 0.100m with wind-sheared ocean current (0.005564 m/s - 0.177530 m/s)
10:55:08 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:08 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:08 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.1492997117195892
10:55:08 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:08 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:08 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:08 DEBUG opendrift.models.oceandrift:572: 669 elements penetrated seafloor, lifting up
10:55:08 DEBUG opendrift.models.oceandrift:590: 70 elements reached seafloor, set to bottom
10:55:08 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
10:55:08 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
10:55:08 DEBUG opendrift.models.oceandrift:572: 573 elements penetrated seafloor, lifting up
10:55:08 DEBUG opendrift.models.oceandrift:590: 68 elements reached seafloor, set to bottom
10:55:08 DEBUG opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
10:55:08 DEBUG opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
10:55:08 DEBUG opendrift.models.oceandrift:572: 553 elements penetrated seafloor, lifting up
10:55:08 DEBUG opendrift.models.oceandrift:590: 65 elements reached seafloor, set to bottom
10:55:08 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
10:55:08 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
10:55:08 DEBUG opendrift.models.oceandrift:572: 523 elements penetrated seafloor, lifting up
10:55:08 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:55:08 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:55:08 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:55:08 DEBUG opendrift.models.oceandrift:572: 500 elements penetrated seafloor, lifting up
10:55:08 DEBUG opendrift.models.oceandrift:590: 67 elements reached seafloor, set to bottom
10:55:08 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
10:55:08 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
10:55:08 DEBUG opendrift.models.oceandrift:572: 486 elements penetrated seafloor, lifting up
10:55:08 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:55:08 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:55:08 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:55:08 DEBUG opendrift.models.oceandrift:572: 497 elements penetrated seafloor, lifting up
10:55:08 DEBUG opendrift.models.oceandrift:590: 60 elements reached seafloor, set to bottom
10:55:08 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
10:55:08 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
10:55:08 DEBUG opendrift.models.oceandrift:572: 464 elements penetrated seafloor, lifting up
10:55:08 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:55:08 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:55:08 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:55:08 DEBUG opendrift.models.oceandrift:572: 468 elements penetrated seafloor, lifting up
10:55:08 DEBUG opendrift.models.oceandrift:590: 60 elements reached seafloor, set to bottom
10:55:08 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
10:55:08 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
10:55:08 DEBUG opendrift.models.oceandrift:572: 438 elements penetrated seafloor, lifting up
10:55:08 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:55:08 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:55:08 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:55:08 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:08 DEBUG opendrift.models.basemodel:2945: 5729 active elements (0 deactivated)
10:55:08 DEBUG opendrift.models.basemodel:1658: to be seeded: 4271, already seeded 5729
10:55:08 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:08 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:08 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:08 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:08 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:08 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:08 DEBUG opendrift.models.basemodel:1253: Data needed for 5764 elements
10:55:08 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:08 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 14:00:00 (before)
2023-08-22 15:00:00 (after)
10:55:08 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 14:00:00) in space (linearNDFast)
10:55:08 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:08 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:08 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:08 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:08 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:08 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:08 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 30.4356 (max)
10:55:08 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:08 DEBUG opendrift.models.basemodel:1527: 5764 active elements
10:55:08 DEBUG opendrift.models.basemodel:1538: 59.09815063474791 <- latitude -> 59.191937970798584
10:55:08 DEBUG opendrift.models.basemodel:1543: 10.840580314690714 <- longitude -> 11.042541184942362
10:55:08 DEBUG opendrift.models.basemodel:1548: -28.00690613122069 <- z -> 0.0
10:55:08 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:08 DEBUG opendrift.models.basemodel:836: Lifting 394 elements to seafloor.
10:55:08 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:08 INFO opendrift.models.basemodel:2882: 2023-08-22 14:22:19.552469 - step 166 of 216 - 5764 active elements (0 deactivated)
10:55:08 DEBUG opendrift.models.basemodel:2888: 4236 elements scheduled.
10:55:08 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:08 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:08 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:08 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:08 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:08 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:08 DEBUG opendrift.models.basemodel:1253: Data needed for 5764 elements
10:55:08 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:08 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:08 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:08 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:08 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:08 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:08 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:08 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:08 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:08 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:08 DEBUG opendrift.models.basemodel:1253: Data needed for 5764 elements
10:55:08 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:08 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 14:00:00 (before)
2023-08-22 15:00:00 (after)
10:55:09 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:09 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:09 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:09 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:09 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:09 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:09 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x28x7) for time after (2023-08-22 15:00:00)
10:55:09 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 14:00:00) in space (linearNDFast)
10:55:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:09 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 15:00:00) in space (linearNDFast)
10:55:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3493 elements, expanding data 1
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 2
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3493 elements, expanding data 1
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 2
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3699 elements, expanding data 1
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 724 elements, expanding data 2
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 153 elements, expanding data 3
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3699 elements, expanding data 1
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 724 elements, expanding data 2
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 153 elements, expanding data 3
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3699 elements, expanding data 1
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 724 elements, expanding data 2
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 153 elements, expanding data 3
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3699 elements, expanding data 1
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 724 elements, expanding data 2
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 153 elements, expanding data 3
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3699 elements, expanding data 1
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 724 elements, expanding data 2
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 153 elements, expanding data 3
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3699 elements, expanding data 1
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 724 elements, expanding data 2
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 153 elements, expanding data 3
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3699 elements, expanding data 1
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 724 elements, expanding data 2
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 153 elements, expanding data 3
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4777 elements, expanding data 1
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1674 elements, expanding data 2
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4777 elements, expanding data 1
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1674 elements, expanding data 2
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4777 elements, expanding data 1
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1674 elements, expanding data 2
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4777 elements, expanding data 1
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1674 elements, expanding data 2
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4777 elements, expanding data 1
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1674 elements, expanding data 2
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4777 elements, expanding data 1
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1674 elements, expanding data 2
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4777 elements, expanding data 1
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1674 elements, expanding data 2
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3493 elements, expanding data 1
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 2
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3493 elements, expanding data 1
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 2
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3493 elements, expanding data 1
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 2
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3493 elements, expanding data 1
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 2
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3493 elements, expanding data 1
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 2
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3493 elements, expanding data 1
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 2
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3493 elements, expanding data 1
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 155 elements, expanding data 2
10:55:09 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:09 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 14:00:00, weight 0.63) and
after (2023-08-22 15:00:00, weight 0.37) in time
10:55:09 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.15943026424394 and -58.9574693655505 degrees.
10:55:09 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.15943026424394 and -58.9574693655505 degrees.
10:55:09 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:09 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:09 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:09 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:09 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:09 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:09 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.815294 (min) 1.13 (max)
10:55:09 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.876339 (min) 0.920265 (max)
10:55:09 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000395877 (min) 0.000395824 (max)
10:55:09 DEBUG opendrift.models.basemodel:1524: x_wind: -4.76155 (min) 8.69579 (max)
10:55:09 DEBUG opendrift.models.basemodel:1524: y_wind: -4.22835 (min) 10.9444 (max)
10:55:09 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:09 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:09 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:09 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:09 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:09 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:09 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:09 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 30.4356 (max)
10:55:09 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:09 DEBUG opendrift.models.basemodel:1527: 5764 active elements
10:55:09 DEBUG opendrift.models.basemodel:1538: 59.09815063474791 <- latitude -> 59.191937970798584
10:55:09 DEBUG opendrift.models.basemodel:1543: 10.840580314690714 <- longitude -> 11.042541184942362
10:55:09 DEBUG opendrift.models.basemodel:1548: -28.00690613122069 <- z -> 0.0
10:55:09 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:09 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:09 DEBUG opendrift.models.physics_methods:940: min: 0.060971, mean: 4.085461, max: 9.835132
10:55:09 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.060971, mean: 4.085461, max: 9.835132
10:55:09 DEBUG opendrift.models.basemodel:813: 886 elements hit coastline, moving back to water
10:55:09 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
10:55:09 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:09 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:09 DEBUG opendrift.models.physics_methods:741: Advecting 47 of 5764 elements above 0.100m with wind-sheared ocean current (0.001307 m/s - 0.175607 m/s)
10:55:09 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:09 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:09 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.11969540360315323
10:55:09 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:09 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:09 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:09 DEBUG opendrift.models.oceandrift:572: 678 elements penetrated seafloor, lifting up
10:55:09 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:55:09 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:55:09 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:55:09 DEBUG opendrift.models.oceandrift:572: 549 elements penetrated seafloor, lifting up
10:55:09 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:55:09 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:55:09 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:55:09 DEBUG opendrift.models.oceandrift:572: 541 elements penetrated seafloor, lifting up
10:55:09 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:55:09 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:55:09 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:55:09 DEBUG opendrift.models.oceandrift:572: 540 elements penetrated seafloor, lifting up
10:55:09 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:55:09 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:55:09 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:55:09 DEBUG opendrift.models.oceandrift:572: 488 elements penetrated seafloor, lifting up
10:55:09 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:55:09 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:55:09 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:55:09 DEBUG opendrift.models.oceandrift:572: 503 elements penetrated seafloor, lifting up
10:55:09 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:55:09 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:55:09 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:55:09 DEBUG opendrift.models.oceandrift:572: 494 elements penetrated seafloor, lifting up
10:55:09 DEBUG opendrift.models.oceandrift:590: 54 elements reached seafloor, set to bottom
10:55:09 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
10:55:09 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
10:55:09 DEBUG opendrift.models.oceandrift:572: 517 elements penetrated seafloor, lifting up
10:55:09 DEBUG opendrift.models.oceandrift:590: 41 elements reached seafloor, set to bottom
10:55:09 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
10:55:09 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
10:55:09 DEBUG opendrift.models.oceandrift:572: 503 elements penetrated seafloor, lifting up
10:55:09 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:55:09 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:55:09 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:55:09 DEBUG opendrift.models.oceandrift:572: 467 elements penetrated seafloor, lifting up
10:55:09 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:55:09 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:55:09 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:55:09 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:09 DEBUG opendrift.models.basemodel:2945: 5764 active elements (0 deactivated)
10:55:09 DEBUG opendrift.models.basemodel:1658: to be seeded: 4236, already seeded 5764
10:55:09 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:09 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:09 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:09 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:09 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:09 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:09 DEBUG opendrift.models.basemodel:1253: Data needed for 5799 elements
10:55:09 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:09 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 14:00:00 (before)
2023-08-22 15:00:00 (after)
10:55:09 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 14:00:00) in space (linearNDFast)
10:55:09 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:09 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:09 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:09 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:09 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:09 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:09 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 31.6356 (max)
10:55:09 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:09 DEBUG opendrift.models.basemodel:1527: 5799 active elements
10:55:09 DEBUG opendrift.models.basemodel:1538: 59.09887432988577 <- latitude -> 59.18991993883569
10:55:09 DEBUG opendrift.models.basemodel:1543: 10.837720035726008 <- longitude -> 11.04423158904732
10:55:09 DEBUG opendrift.models.basemodel:1548: -26.394195556640625 <- z -> 0.0
10:55:09 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:09 DEBUG opendrift.models.basemodel:836: Lifting 392 elements to seafloor.
10:55:09 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:09 INFO opendrift.models.basemodel:2882: 2023-08-22 14:32:19.552469 - step 167 of 216 - 5799 active elements (0 deactivated)
10:55:09 DEBUG opendrift.models.basemodel:2888: 4201 elements scheduled.
10:55:09 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:09 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:09 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:09 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:09 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:09 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:09 DEBUG opendrift.models.basemodel:1253: Data needed for 5799 elements
10:55:09 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:09 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:09 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:09 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:09 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:09 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:09 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:09 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:09 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:09 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:09 DEBUG opendrift.models.basemodel:1253: Data needed for 5799 elements
10:55:09 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:09 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 14:00:00 (before)
2023-08-22 15:00:00 (after)
10:55:10 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:10 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:10 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:10 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:10 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:10 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:10 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x29x7) for time after (2023-08-22 15:00:00)
10:55:10 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 14:00:00) in space (linearNDFast)
10:55:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:10 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 15:00:00) in space (linearNDFast)
10:55:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3542 elements, expanding data 1
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 162 elements, expanding data 2
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3542 elements, expanding data 1
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 162 elements, expanding data 2
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3763 elements, expanding data 1
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 739 elements, expanding data 2
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 3
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3763 elements, expanding data 1
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 739 elements, expanding data 2
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 3
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3763 elements, expanding data 1
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 739 elements, expanding data 2
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 3
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3763 elements, expanding data 1
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 739 elements, expanding data 2
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 3
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3763 elements, expanding data 1
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 739 elements, expanding data 2
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 3
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3763 elements, expanding data 1
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 739 elements, expanding data 2
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 3
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3763 elements, expanding data 1
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 739 elements, expanding data 2
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 157 elements, expanding data 3
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4822 elements, expanding data 1
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1698 elements, expanding data 2
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4822 elements, expanding data 1
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1698 elements, expanding data 2
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4822 elements, expanding data 1
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1698 elements, expanding data 2
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4822 elements, expanding data 1
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1698 elements, expanding data 2
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4822 elements, expanding data 1
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1698 elements, expanding data 2
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4822 elements, expanding data 1
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1698 elements, expanding data 2
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4822 elements, expanding data 1
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1698 elements, expanding data 2
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3542 elements, expanding data 1
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 162 elements, expanding data 2
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3542 elements, expanding data 1
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 162 elements, expanding data 2
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3542 elements, expanding data 1
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 162 elements, expanding data 2
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3542 elements, expanding data 1
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 162 elements, expanding data 2
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3542 elements, expanding data 1
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 162 elements, expanding data 2
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3542 elements, expanding data 1
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 162 elements, expanding data 2
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3542 elements, expanding data 1
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 162 elements, expanding data 2
10:55:10 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:10 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 14:00:00, weight 0.46) and
after (2023-08-22 15:00:00, weight 0.54) in time
10:55:10 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.162290549524975 and -58.95577894964948 degrees.
10:55:10 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.162290549524975 and -58.95577894964948 degrees.
10:55:10 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:10 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:10 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:10 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:10 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:10 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:10 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.856768 (min) 0.841088 (max)
10:55:10 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.966335 (min) 0.878829 (max)
10:55:10 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000323558 (min) 0.000386787 (max)
10:55:10 DEBUG opendrift.models.basemodel:1524: x_wind: -4.34471 (min) 10.0635 (max)
10:55:10 DEBUG opendrift.models.basemodel:1524: y_wind: -4.10793 (min) 10.4189 (max)
10:55:10 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:10 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:10 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:10 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:10 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:10 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:10 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:10 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 31.6356 (max)
10:55:10 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:10 DEBUG opendrift.models.basemodel:1527: 5799 active elements
10:55:10 DEBUG opendrift.models.basemodel:1538: 59.09887432988577 <- latitude -> 59.18991993883569
10:55:10 DEBUG opendrift.models.basemodel:1543: 10.837720035726008 <- longitude -> 11.04423158904732
10:55:10 DEBUG opendrift.models.basemodel:1548: -26.394195556640625 <- z -> 0.0
10:55:10 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:10 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:10 DEBUG opendrift.models.physics_methods:940: min: 0.097007, mean: 4.267025, max: 9.591409
10:55:10 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.097007, mean: 4.267025, max: 9.591409
10:55:10 DEBUG opendrift.models.basemodel:813: 899 elements hit coastline, moving back to water
10:55:10 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:55:10 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:10 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:10 DEBUG opendrift.models.physics_methods:741: Advecting 43 of 5799 elements above 0.100m with wind-sheared ocean current (0.003144 m/s - 0.186730 m/s)
10:55:10 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:10 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:10 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.11383680365140914
10:55:10 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:10 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:10 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:10 DEBUG opendrift.models.oceandrift:572: 737 elements penetrated seafloor, lifting up
10:55:10 DEBUG opendrift.models.oceandrift:590: 70 elements reached seafloor, set to bottom
10:55:10 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
10:55:10 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
10:55:10 DEBUG opendrift.models.oceandrift:572: 590 elements penetrated seafloor, lifting up
10:55:10 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:55:10 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:55:10 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:55:10 DEBUG opendrift.models.oceandrift:572: 597 elements penetrated seafloor, lifting up
10:55:10 DEBUG opendrift.models.oceandrift:590: 54 elements reached seafloor, set to bottom
10:55:10 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
10:55:10 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
10:55:10 DEBUG opendrift.models.oceandrift:572: 531 elements penetrated seafloor, lifting up
10:55:10 DEBUG opendrift.models.oceandrift:590: 67 elements reached seafloor, set to bottom
10:55:10 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
10:55:10 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
10:55:10 DEBUG opendrift.models.oceandrift:572: 557 elements penetrated seafloor, lifting up
10:55:10 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:55:10 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:55:10 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:55:10 DEBUG opendrift.models.oceandrift:572: 511 elements penetrated seafloor, lifting up
10:55:10 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:55:10 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:55:10 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:55:10 DEBUG opendrift.models.oceandrift:572: 510 elements penetrated seafloor, lifting up
10:55:10 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:55:10 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:55:10 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:55:10 DEBUG opendrift.models.oceandrift:572: 491 elements penetrated seafloor, lifting up
10:55:10 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:55:10 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:55:10 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:55:10 DEBUG opendrift.models.oceandrift:572: 492 elements penetrated seafloor, lifting up
10:55:10 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:55:10 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:55:10 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:55:10 DEBUG opendrift.models.oceandrift:572: 511 elements penetrated seafloor, lifting up
10:55:10 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:55:10 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:55:10 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:55:10 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:10 DEBUG opendrift.models.basemodel:2945: 5799 active elements (0 deactivated)
10:55:10 DEBUG opendrift.models.basemodel:1658: to be seeded: 4201, already seeded 5799
10:55:10 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:55:10 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:10 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:10 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:10 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:10 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:10 DEBUG opendrift.models.basemodel:1253: Data needed for 5833 elements
10:55:10 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:10 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 14:00:00 (before)
2023-08-22 15:00:00 (after)
10:55:10 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 14:00:00) in space (linearNDFast)
10:55:10 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:10 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:10 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:10 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:10 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:10 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:10 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 30.4128 (max)
10:55:10 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:10 DEBUG opendrift.models.basemodel:1527: 5833 active elements
10:55:10 DEBUG opendrift.models.basemodel:1538: 59.097315188996475 <- latitude -> 59.18972559966371
10:55:10 DEBUG opendrift.models.basemodel:1543: 10.840524943178051 <- longitude -> 11.043918159904473
10:55:10 DEBUG opendrift.models.basemodel:1548: -26.394195556640625 <- z -> 0.0
10:55:10 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:10 DEBUG opendrift.models.basemodel:836: Lifting 351 elements to seafloor.
10:55:10 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:10 INFO opendrift.models.basemodel:2882: 2023-08-22 14:42:19.552469 - step 168 of 216 - 5833 active elements (0 deactivated)
10:55:10 DEBUG opendrift.models.basemodel:2888: 4167 elements scheduled.
10:55:10 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:10 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:10 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:10 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:10 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:10 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:10 DEBUG opendrift.models.basemodel:1253: Data needed for 5833 elements
10:55:10 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:10 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:10 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:10 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:10 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:10 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:10 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:10 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:10 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:10 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:10 DEBUG opendrift.models.basemodel:1253: Data needed for 5833 elements
10:55:10 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:10 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 14:00:00 (before)
2023-08-22 15:00:00 (after)
10:55:11 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:11 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:11 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:11 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:11 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:11 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:11 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x29x7) for time after (2023-08-22 15:00:00)
10:55:11 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 14:00:00) in space (linearNDFast)
10:55:11 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:11 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 15:00:00) in space (linearNDFast)
10:55:11 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3568 elements, expanding data 1
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 2
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3568 elements, expanding data 1
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 2
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3802 elements, expanding data 1
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 748 elements, expanding data 2
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 162 elements, expanding data 3
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3802 elements, expanding data 1
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 748 elements, expanding data 2
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 162 elements, expanding data 3
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3802 elements, expanding data 1
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 748 elements, expanding data 2
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 162 elements, expanding data 3
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3802 elements, expanding data 1
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 748 elements, expanding data 2
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 162 elements, expanding data 3
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3802 elements, expanding data 1
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 748 elements, expanding data 2
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 162 elements, expanding data 3
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3802 elements, expanding data 1
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 748 elements, expanding data 2
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 162 elements, expanding data 3
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3802 elements, expanding data 1
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 748 elements, expanding data 2
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 162 elements, expanding data 3
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4850 elements, expanding data 1
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1727 elements, expanding data 2
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4850 elements, expanding data 1
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1727 elements, expanding data 2
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4850 elements, expanding data 1
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1727 elements, expanding data 2
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4850 elements, expanding data 1
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1727 elements, expanding data 2
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4850 elements, expanding data 1
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1727 elements, expanding data 2
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4850 elements, expanding data 1
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1727 elements, expanding data 2
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4850 elements, expanding data 1
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1727 elements, expanding data 2
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3568 elements, expanding data 1
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 2
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3568 elements, expanding data 1
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 2
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3568 elements, expanding data 1
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 2
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3568 elements, expanding data 1
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 2
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3568 elements, expanding data 1
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 2
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3568 elements, expanding data 1
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 2
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3568 elements, expanding data 1
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 2
10:55:11 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:11 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 14:00:00, weight 0.29) and
after (2023-08-22 15:00:00, weight 0.71) in time
10:55:11 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.15948563408723 and -58.95609238102605 degrees.
10:55:11 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.15948563408723 and -58.95609238102605 degrees.
10:55:11 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:11 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:11 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:11 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:11 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:11 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:11 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.752716 (min) 1.16936 (max)
10:55:11 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.937613 (min) 0.835464 (max)
10:55:11 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000346969 (min) 0.000373216 (max)
10:55:11 DEBUG opendrift.models.basemodel:1524: x_wind: -3.9343 (min) 9.84934 (max)
10:55:11 DEBUG opendrift.models.basemodel:1524: y_wind: -3.46058 (min) 10.7376 (max)
10:55:11 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:11 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:11 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:11 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:11 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:11 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:11 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:11 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 30.4128 (max)
10:55:11 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:11 DEBUG opendrift.models.basemodel:1527: 5833 active elements
10:55:11 DEBUG opendrift.models.basemodel:1538: 59.097315188996475 <- latitude -> 59.18972559966371
10:55:11 DEBUG opendrift.models.basemodel:1543: 10.840524943178051 <- longitude -> 11.043918159904473
10:55:11 DEBUG opendrift.models.basemodel:1548: -26.394195556640625 <- z -> 0.0
10:55:11 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:11 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:11 DEBUG opendrift.models.physics_methods:940: min: 0.100227, mean: 4.379147, max: 10.518175
10:55:11 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.100227, mean: 4.379147, max: 10.518175
10:55:11 DEBUG opendrift.models.basemodel:813: 909 elements hit coastline, moving back to water
10:55:11 DEBUG opendrift.models.basemodel:836: Lifting 125 elements to seafloor.
10:55:11 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:11 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:11 DEBUG opendrift.models.physics_methods:741: Advecting 40 of 5833 elements above 0.100m with wind-sheared ocean current (0.021431 m/s - 0.160922 m/s)
10:55:11 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:11 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:11 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.13689767756755827
10:55:11 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:11 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:11 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:11 DEBUG opendrift.models.oceandrift:572: 770 elements penetrated seafloor, lifting up
10:55:11 DEBUG opendrift.models.oceandrift:590: 65 elements reached seafloor, set to bottom
10:55:11 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
10:55:11 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
10:55:11 DEBUG opendrift.models.oceandrift:572: 612 elements penetrated seafloor, lifting up
10:55:11 DEBUG opendrift.models.oceandrift:590: 70 elements reached seafloor, set to bottom
10:55:11 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
10:55:11 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
10:55:11 DEBUG opendrift.models.oceandrift:572: 572 elements penetrated seafloor, lifting up
10:55:11 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:55:11 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:55:11 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:55:11 DEBUG opendrift.models.oceandrift:572: 565 elements penetrated seafloor, lifting up
10:55:11 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:55:11 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:55:11 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:55:11 DEBUG opendrift.models.oceandrift:572: 561 elements penetrated seafloor, lifting up
10:55:11 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:55:11 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:55:11 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:55:11 DEBUG opendrift.models.oceandrift:572: 511 elements penetrated seafloor, lifting up
10:55:11 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:55:11 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:55:11 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:55:11 DEBUG opendrift.models.oceandrift:572: 510 elements penetrated seafloor, lifting up
10:55:11 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:55:11 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:55:11 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:55:11 DEBUG opendrift.models.oceandrift:572: 530 elements penetrated seafloor, lifting up
10:55:11 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:55:11 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:55:11 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:55:11 DEBUG opendrift.models.oceandrift:572: 531 elements penetrated seafloor, lifting up
10:55:11 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:55:11 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:55:11 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:55:11 DEBUG opendrift.models.oceandrift:572: 448 elements penetrated seafloor, lifting up
10:55:11 DEBUG opendrift.models.oceandrift:590: 37 elements reached seafloor, set to bottom
10:55:11 DEBUG opendrift.models.basemodel:836: Lifting 37 elements to seafloor.
10:55:11 DEBUG opendrift.models.sedimentdrift:112: Settling 37 elements at seafloor
10:55:11 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:11 DEBUG opendrift.models.basemodel:2945: 5833 active elements (0 deactivated)
10:55:11 DEBUG opendrift.models.basemodel:1658: to be seeded: 4167, already seeded 5833
10:55:11 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:11 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:11 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:11 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:11 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:11 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:11 DEBUG opendrift.models.basemodel:1253: Data needed for 5868 elements
10:55:11 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:11 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 14:00:00 (before)
2023-08-22 15:00:00 (after)
10:55:11 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 14:00:00) in space (linearNDFast)
10:55:11 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:11 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:11 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:11 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:11 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:11 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:11 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 31.6831 (max)
10:55:11 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:11 DEBUG opendrift.models.basemodel:1527: 5868 active elements
10:55:11 DEBUG opendrift.models.basemodel:1538: 59.099635343263216 <- latitude -> 59.19015225795653
10:55:11 DEBUG opendrift.models.basemodel:1543: 10.837902347950472 <- longitude -> 11.04285915399597
10:55:11 DEBUG opendrift.models.basemodel:1548: -26.384195556640623 <- z -> 0.0
10:55:11 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:11 DEBUG opendrift.models.basemodel:836: Lifting 380 elements to seafloor.
10:55:11 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:11 INFO opendrift.models.basemodel:2882: 2023-08-22 14:52:19.552469 - step 169 of 216 - 5868 active elements (0 deactivated)
10:55:11 DEBUG opendrift.models.basemodel:2888: 4132 elements scheduled.
10:55:11 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:11 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:11 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:11 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:11 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:11 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:11 DEBUG opendrift.models.basemodel:1253: Data needed for 5868 elements
10:55:11 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:11 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:11 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:11 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:11 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:11 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:11 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:11 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:11 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:11 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:11 DEBUG opendrift.models.basemodel:1253: Data needed for 5868 elements
10:55:11 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:11 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 14:00:00 (before)
2023-08-22 15:00:00 (after)
10:55:12 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:12 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:12 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:12 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:12 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:12 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:12 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x29x7) for time after (2023-08-22 15:00:00)
10:55:12 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 14:00:00) in space (linearNDFast)
10:55:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:12 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 15:00:00) in space (linearNDFast)
10:55:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3643 elements, expanding data 1
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 2
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3643 elements, expanding data 1
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 2
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3851 elements, expanding data 1
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 776 elements, expanding data 2
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 3
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3851 elements, expanding data 1
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 776 elements, expanding data 2
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 3
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3851 elements, expanding data 1
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 776 elements, expanding data 2
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 3
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3851 elements, expanding data 1
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 776 elements, expanding data 2
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 3
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3851 elements, expanding data 1
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 776 elements, expanding data 2
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 3
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3851 elements, expanding data 1
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 776 elements, expanding data 2
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 3
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3851 elements, expanding data 1
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 776 elements, expanding data 2
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 3
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4899 elements, expanding data 1
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1736 elements, expanding data 2
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4899 elements, expanding data 1
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1736 elements, expanding data 2
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4899 elements, expanding data 1
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1736 elements, expanding data 2
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4899 elements, expanding data 1
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1736 elements, expanding data 2
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4899 elements, expanding data 1
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1736 elements, expanding data 2
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4899 elements, expanding data 1
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1736 elements, expanding data 2
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4899 elements, expanding data 1
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1736 elements, expanding data 2
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3643 elements, expanding data 1
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 2
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3643 elements, expanding data 1
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 2
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3643 elements, expanding data 1
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 2
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3643 elements, expanding data 1
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 2
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3643 elements, expanding data 1
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 2
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3643 elements, expanding data 1
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 2
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3643 elements, expanding data 1
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 2
10:55:12 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:12 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 14:00:00, weight 0.13) and
after (2023-08-22 15:00:00, weight 0.87) in time
10:55:12 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.16210823149325 and -58.957151399159834 degrees.
10:55:12 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.16210823149325 and -58.957151399159834 degrees.
10:55:12 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:12 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:12 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:12 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:12 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:12 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:12 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.76491 (min) 0.933145 (max)
10:55:12 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.887689 (min) 0.792079 (max)
10:55:12 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000277081 (min) 0.000360041 (max)
10:55:12 DEBUG opendrift.models.basemodel:1524: x_wind: -4.06339 (min) 10.4872 (max)
10:55:12 DEBUG opendrift.models.basemodel:1524: y_wind: -4.08087 (min) 11.8327 (max)
10:55:12 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:12 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:12 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:12 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:12 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:12 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:12 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:12 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 31.6831 (max)
10:55:12 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:12 DEBUG opendrift.models.basemodel:1527: 5868 active elements
10:55:12 DEBUG opendrift.models.basemodel:1538: 59.099635343263216 <- latitude -> 59.19015225795653
10:55:12 DEBUG opendrift.models.basemodel:1543: 10.837902347950472 <- longitude -> 11.04285915399597
10:55:12 DEBUG opendrift.models.basemodel:1548: -26.384195556640623 <- z -> 0.0
10:55:12 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:12 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:12 DEBUG opendrift.models.physics_methods:940: min: 0.149276, mean: 4.581437, max: 10.738513
10:55:12 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.149276, mean: 4.581437, max: 10.738513
10:55:12 DEBUG opendrift.models.basemodel:813: 895 elements hit coastline, moving back to water
10:55:12 DEBUG opendrift.models.basemodel:836: Lifting 16 elements to seafloor.
10:55:12 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:12 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:12 DEBUG opendrift.models.physics_methods:741: Advecting 50 of 5868 elements above 0.100m with wind-sheared ocean current (0.000233 m/s - 0.224452 m/s)
10:55:12 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:12 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:12 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.14269313307912823
10:55:12 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:12 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:12 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:12 DEBUG opendrift.models.oceandrift:572: 726 elements penetrated seafloor, lifting up
10:55:12 DEBUG opendrift.models.oceandrift:590: 71 elements reached seafloor, set to bottom
10:55:12 DEBUG opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
10:55:12 DEBUG opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
10:55:12 DEBUG opendrift.models.oceandrift:572: 604 elements penetrated seafloor, lifting up
10:55:12 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:55:12 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:55:12 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:55:12 DEBUG opendrift.models.oceandrift:572: 545 elements penetrated seafloor, lifting up
10:55:12 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:55:12 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:55:12 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:55:12 DEBUG opendrift.models.oceandrift:572: 545 elements penetrated seafloor, lifting up
10:55:12 DEBUG opendrift.models.oceandrift:590: 42 elements reached seafloor, set to bottom
10:55:12 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
10:55:12 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
10:55:12 DEBUG opendrift.models.oceandrift:572: 523 elements penetrated seafloor, lifting up
10:55:12 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:55:12 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:55:12 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:55:12 DEBUG opendrift.models.oceandrift:572: 527 elements penetrated seafloor, lifting up
10:55:12 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:55:12 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:55:12 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:55:12 DEBUG opendrift.models.oceandrift:572: 507 elements penetrated seafloor, lifting up
10:55:12 DEBUG opendrift.models.oceandrift:590: 60 elements reached seafloor, set to bottom
10:55:12 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
10:55:12 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
10:55:12 DEBUG opendrift.models.oceandrift:572: 532 elements penetrated seafloor, lifting up
10:55:12 DEBUG opendrift.models.oceandrift:590: 54 elements reached seafloor, set to bottom
10:55:12 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
10:55:12 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
10:55:12 DEBUG opendrift.models.oceandrift:572: 484 elements penetrated seafloor, lifting up
10:55:12 DEBUG opendrift.models.oceandrift:590: 41 elements reached seafloor, set to bottom
10:55:12 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
10:55:12 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
10:55:12 DEBUG opendrift.models.oceandrift:572: 515 elements penetrated seafloor, lifting up
10:55:12 DEBUG opendrift.models.oceandrift:590: 36 elements reached seafloor, set to bottom
10:55:12 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
10:55:12 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
10:55:12 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:12 DEBUG opendrift.models.basemodel:2945: 5868 active elements (0 deactivated)
10:55:12 DEBUG opendrift.models.basemodel:1658: to be seeded: 4132, already seeded 5868
10:55:12 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:12 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:12 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:12 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:12 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:12 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:12 DEBUG opendrift.models.basemodel:1253: Data needed for 5903 elements
10:55:12 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:12 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 15:00:00 (before)
2023-08-22 16:00:00 (after)
10:55:12 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 15:00:00) in space (linearNDFast)
10:55:12 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:12 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:12 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:12 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:12 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:12 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:12 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 30.9759 (max)
10:55:12 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:12 DEBUG opendrift.models.basemodel:1527: 5903 active elements
10:55:12 DEBUG opendrift.models.basemodel:1538: 59.0988440927177 <- latitude -> 59.189730150401175
10:55:12 DEBUG opendrift.models.basemodel:1543: 10.840107757958998 <- longitude -> 11.04234394316862
10:55:12 DEBUG opendrift.models.basemodel:1548: -30.276187823424962 <- z -> 0.0
10:55:12 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:12 DEBUG opendrift.models.basemodel:836: Lifting 370 elements to seafloor.
10:55:12 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:12 INFO opendrift.models.basemodel:2882: 2023-08-22 15:02:19.552469 - step 170 of 216 - 5903 active elements (0 deactivated)
10:55:12 DEBUG opendrift.models.basemodel:2888: 4097 elements scheduled.
10:55:12 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:12 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:12 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:12 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:12 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:12 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:12 DEBUG opendrift.models.basemodel:1253: Data needed for 5903 elements
10:55:12 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:12 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:12 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:12 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:12 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:12 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:12 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:12 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:12 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:12 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:12 DEBUG opendrift.models.basemodel:1253: Data needed for 5903 elements
10:55:12 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:12 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 15:00:00 (before)
2023-08-22 16:00:00 (after)
10:55:13 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:13 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:13 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:13 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:13 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:13 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:13 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x29x7) for time after (2023-08-22 16:00:00)
10:55:13 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 15:00:00) in space (linearNDFast)
10:55:13 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:13 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 16:00:00) in space (linearNDFast)
10:55:13 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3666 elements, expanding data 1
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 169 elements, expanding data 2
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3666 elements, expanding data 1
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 169 elements, expanding data 2
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3873 elements, expanding data 1
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 789 elements, expanding data 2
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 3
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3873 elements, expanding data 1
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 789 elements, expanding data 2
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 3
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3873 elements, expanding data 1
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 789 elements, expanding data 2
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 3
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3873 elements, expanding data 1
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 789 elements, expanding data 2
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 3
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3873 elements, expanding data 1
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 789 elements, expanding data 2
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 3
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3873 elements, expanding data 1
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 789 elements, expanding data 2
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 3
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3873 elements, expanding data 1
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 789 elements, expanding data 2
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 3
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4932 elements, expanding data 1
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1776 elements, expanding data 2
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4932 elements, expanding data 1
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1776 elements, expanding data 2
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4932 elements, expanding data 1
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1776 elements, expanding data 2
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4932 elements, expanding data 1
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1776 elements, expanding data 2
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4932 elements, expanding data 1
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1776 elements, expanding data 2
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4932 elements, expanding data 1
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1776 elements, expanding data 2
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4932 elements, expanding data 1
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1776 elements, expanding data 2
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3666 elements, expanding data 1
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 169 elements, expanding data 2
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3666 elements, expanding data 1
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 169 elements, expanding data 2
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3666 elements, expanding data 1
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 169 elements, expanding data 2
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3666 elements, expanding data 1
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 169 elements, expanding data 2
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3666 elements, expanding data 1
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 169 elements, expanding data 2
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3666 elements, expanding data 1
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 169 elements, expanding data 2
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3666 elements, expanding data 1
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 169 elements, expanding data 2
10:55:13 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:13 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 15:00:00, weight 0.96) and
after (2023-08-22 16:00:00, weight 0.04) in time
10:55:13 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.159902813132405 and -58.95766660215971 degrees.
10:55:13 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.159902813132405 and -58.95766660215971 degrees.
10:55:13 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:13 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:13 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:13 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:13 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:13 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:13 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.737677 (min) 1.05965 (max)
10:55:13 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.868568 (min) 0.918406 (max)
10:55:13 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000344326 (min) 0.000342169 (max)
10:55:13 DEBUG opendrift.models.basemodel:1524: x_wind: -4.36654 (min) 10.7761 (max)
10:55:13 DEBUG opendrift.models.basemodel:1524: y_wind: -4.59965 (min) 10.2333 (max)
10:55:13 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:13 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:13 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:13 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:13 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:13 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:13 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:13 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 30.9759 (max)
10:55:13 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:13 DEBUG opendrift.models.basemodel:1527: 5903 active elements
10:55:13 DEBUG opendrift.models.basemodel:1538: 59.0988440927177 <- latitude -> 59.189730150401175
10:55:13 DEBUG opendrift.models.basemodel:1543: 10.840107757958998 <- longitude -> 11.04234394316862
10:55:13 DEBUG opendrift.models.basemodel:1548: -30.276187823424962 <- z -> 0.0
10:55:13 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:13 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:13 DEBUG opendrift.models.physics_methods:940: min: 0.158405, mean: 4.718947, max: 10.320066
10:55:13 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.158405, mean: 4.718947, max: 10.320066
10:55:13 DEBUG opendrift.models.basemodel:813: 941 elements hit coastline, moving back to water
10:55:13 DEBUG opendrift.models.basemodel:836: Lifting 98 elements to seafloor.
10:55:13 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:13 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:13 DEBUG opendrift.models.physics_methods:741: Advecting 46 of 5903 elements above 0.100m with wind-sheared ocean current (0.001814 m/s - 0.196364 m/s)
10:55:13 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:13 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:13 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.13178948391826628
10:55:13 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:13 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:13 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:13 DEBUG opendrift.models.oceandrift:572: 790 elements penetrated seafloor, lifting up
10:55:13 DEBUG opendrift.models.oceandrift:590: 60 elements reached seafloor, set to bottom
10:55:13 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
10:55:13 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
10:55:13 DEBUG opendrift.models.oceandrift:572: 630 elements penetrated seafloor, lifting up
10:55:13 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:55:13 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:55:13 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:55:13 DEBUG opendrift.models.oceandrift:572: 615 elements penetrated seafloor, lifting up
10:55:13 DEBUG opendrift.models.oceandrift:590: 71 elements reached seafloor, set to bottom
10:55:13 DEBUG opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
10:55:13 DEBUG opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
10:55:13 DEBUG opendrift.models.oceandrift:572: 598 elements penetrated seafloor, lifting up
10:55:13 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:55:13 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:55:13 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:55:13 DEBUG opendrift.models.oceandrift:572: 596 elements penetrated seafloor, lifting up
10:55:13 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:55:13 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:55:13 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:55:13 DEBUG opendrift.models.oceandrift:572: 584 elements penetrated seafloor, lifting up
10:55:13 DEBUG opendrift.models.oceandrift:590: 62 elements reached seafloor, set to bottom
10:55:13 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
10:55:13 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
10:55:13 DEBUG opendrift.models.oceandrift:572: 562 elements penetrated seafloor, lifting up
10:55:13 DEBUG opendrift.models.oceandrift:590: 43 elements reached seafloor, set to bottom
10:55:13 DEBUG opendrift.models.basemodel:836: Lifting 43 elements to seafloor.
10:55:13 DEBUG opendrift.models.sedimentdrift:112: Settling 43 elements at seafloor
10:55:13 DEBUG opendrift.models.oceandrift:572: 573 elements penetrated seafloor, lifting up
10:55:13 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:55:13 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:55:13 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:55:13 DEBUG opendrift.models.oceandrift:572: 528 elements penetrated seafloor, lifting up
10:55:13 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:55:13 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:55:13 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:55:13 DEBUG opendrift.models.oceandrift:572: 531 elements penetrated seafloor, lifting up
10:55:13 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:55:13 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:55:13 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:55:13 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:13 DEBUG opendrift.models.basemodel:2945: 5903 active elements (0 deactivated)
10:55:13 DEBUG opendrift.models.basemodel:1658: to be seeded: 4097, already seeded 5903
10:55:13 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:55:13 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:13 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:13 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:13 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:13 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:13 DEBUG opendrift.models.basemodel:1253: Data needed for 5937 elements
10:55:13 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:13 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 15:00:00 (before)
2023-08-22 16:00:00 (after)
10:55:13 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 15:00:00) in space (linearNDFast)
10:55:13 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:13 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:13 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:13 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:13 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:13 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:13 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 30.3374 (max)
10:55:13 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:13 DEBUG opendrift.models.basemodel:1527: 5937 active elements
10:55:13 DEBUG opendrift.models.basemodel:1538: 59.09875345799831 <- latitude -> 59.190181557911465
10:55:13 DEBUG opendrift.models.basemodel:1543: 10.839023451783303 <- longitude -> 11.045127986308517
10:55:13 DEBUG opendrift.models.basemodel:1548: -28.531278517503452 <- z -> 0.0
10:55:13 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:13 DEBUG opendrift.models.basemodel:836: Lifting 373 elements to seafloor.
10:55:13 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:13 INFO opendrift.models.basemodel:2882: 2023-08-22 15:12:19.552469 - step 171 of 216 - 5937 active elements (0 deactivated)
10:55:13 DEBUG opendrift.models.basemodel:2888: 4063 elements scheduled.
10:55:13 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:13 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:13 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:13 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:13 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:13 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:13 DEBUG opendrift.models.basemodel:1253: Data needed for 5937 elements
10:55:13 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:13 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:13 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:13 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:13 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:13 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:13 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:13 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:13 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:13 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:13 DEBUG opendrift.models.basemodel:1253: Data needed for 5937 elements
10:55:13 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:13 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 15:00:00 (before)
2023-08-22 16:00:00 (after)
10:55:14 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:14 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:14 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:14 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:14 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:14 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:14 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x29x7) for time after (2023-08-22 16:00:00)
10:55:14 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 15:00:00) in space (linearNDFast)
10:55:14 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:14 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 16:00:00) in space (linearNDFast)
10:55:14 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3686 elements, expanding data 1
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 171 elements, expanding data 2
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3686 elements, expanding data 1
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 171 elements, expanding data 2
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3890 elements, expanding data 1
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 794 elements, expanding data 2
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 3
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3890 elements, expanding data 1
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 794 elements, expanding data 2
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 3
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3890 elements, expanding data 1
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 794 elements, expanding data 2
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 3
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3890 elements, expanding data 1
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 794 elements, expanding data 2
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 3
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3890 elements, expanding data 1
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 794 elements, expanding data 2
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 3
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3890 elements, expanding data 1
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 794 elements, expanding data 2
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 3
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3890 elements, expanding data 1
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 794 elements, expanding data 2
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 163 elements, expanding data 3
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4961 elements, expanding data 1
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1784 elements, expanding data 2
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4961 elements, expanding data 1
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1784 elements, expanding data 2
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4961 elements, expanding data 1
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1784 elements, expanding data 2
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4961 elements, expanding data 1
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1784 elements, expanding data 2
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4961 elements, expanding data 1
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1784 elements, expanding data 2
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4961 elements, expanding data 1
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1784 elements, expanding data 2
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4961 elements, expanding data 1
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1784 elements, expanding data 2
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3686 elements, expanding data 1
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 171 elements, expanding data 2
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3686 elements, expanding data 1
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 171 elements, expanding data 2
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3686 elements, expanding data 1
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 171 elements, expanding data 2
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3686 elements, expanding data 1
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 171 elements, expanding data 2
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3686 elements, expanding data 1
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 171 elements, expanding data 2
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3686 elements, expanding data 1
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 171 elements, expanding data 2
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3686 elements, expanding data 1
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 171 elements, expanding data 2
10:55:14 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:14 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 15:00:00, weight 0.79) and
after (2023-08-22 16:00:00, weight 0.21) in time
10:55:14 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.16098712003621 and -58.9548825522204 degrees.
10:55:14 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.16098712003621 and -58.9548825522204 degrees.
10:55:14 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:14 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:14 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:14 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:14 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:14 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:14 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.827112 (min) 0.990291 (max)
10:55:14 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.88937 (min) 0.838404 (max)
10:55:14 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000389337 (min) 0.000345261 (max)
10:55:14 DEBUG opendrift.models.basemodel:1524: x_wind: -4.57205 (min) 9.59768 (max)
10:55:14 DEBUG opendrift.models.basemodel:1524: y_wind: -3.45536 (min) 11.4195 (max)
10:55:14 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:14 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:14 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:14 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:14 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:14 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:14 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:14 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 30.3374 (max)
10:55:14 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:14 DEBUG opendrift.models.basemodel:1527: 5937 active elements
10:55:14 DEBUG opendrift.models.basemodel:1538: 59.09875345799831 <- latitude -> 59.190181557911465
10:55:14 DEBUG opendrift.models.basemodel:1543: 10.839023451783303 <- longitude -> 11.045127986308517
10:55:14 DEBUG opendrift.models.basemodel:1548: -28.531278517503452 <- z -> 0.0
10:55:14 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:14 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:14 DEBUG opendrift.models.physics_methods:940: min: 0.266765, mean: 4.661202, max: 11.229869
10:55:14 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.266765, mean: 4.661202, max: 11.229869
10:55:14 DEBUG opendrift.models.basemodel:813: 952 elements hit coastline, moving back to water
10:55:14 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:55:14 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:14 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:14 DEBUG opendrift.models.physics_methods:741: Advecting 44 of 5937 elements above 0.100m with wind-sheared ocean current (0.007183 m/s - 0.173646 m/s)
10:55:14 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:14 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:14 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.15604976674564358
10:55:14 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:14 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:14 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:14 DEBUG opendrift.models.oceandrift:572: 787 elements penetrated seafloor, lifting up
10:55:14 DEBUG opendrift.models.oceandrift:590: 67 elements reached seafloor, set to bottom
10:55:14 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
10:55:14 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
10:55:14 DEBUG opendrift.models.oceandrift:572: 642 elements penetrated seafloor, lifting up
10:55:14 DEBUG opendrift.models.oceandrift:590: 77 elements reached seafloor, set to bottom
10:55:14 DEBUG opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
10:55:14 DEBUG opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
10:55:14 DEBUG opendrift.models.oceandrift:572: 623 elements penetrated seafloor, lifting up
10:55:14 DEBUG opendrift.models.oceandrift:590: 53 elements reached seafloor, set to bottom
10:55:14 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
10:55:14 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
10:55:14 DEBUG opendrift.models.oceandrift:572: 618 elements penetrated seafloor, lifting up
10:55:14 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:55:14 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:55:14 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:55:14 DEBUG opendrift.models.oceandrift:572: 570 elements penetrated seafloor, lifting up
10:55:14 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:55:14 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:55:14 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:55:14 DEBUG opendrift.models.oceandrift:572: 576 elements penetrated seafloor, lifting up
10:55:14 DEBUG opendrift.models.oceandrift:590: 60 elements reached seafloor, set to bottom
10:55:14 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
10:55:14 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
10:55:14 DEBUG opendrift.models.oceandrift:572: 554 elements penetrated seafloor, lifting up
10:55:14 DEBUG opendrift.models.oceandrift:590: 53 elements reached seafloor, set to bottom
10:55:14 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
10:55:14 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
10:55:14 DEBUG opendrift.models.oceandrift:572: 573 elements penetrated seafloor, lifting up
10:55:14 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:55:14 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:55:14 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:55:14 DEBUG opendrift.models.oceandrift:572: 519 elements penetrated seafloor, lifting up
10:55:14 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:55:14 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:55:14 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:55:14 DEBUG opendrift.models.oceandrift:572: 536 elements penetrated seafloor, lifting up
10:55:14 DEBUG opendrift.models.oceandrift:590: 65 elements reached seafloor, set to bottom
10:55:14 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
10:55:14 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
10:55:14 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:14 DEBUG opendrift.models.basemodel:2945: 5937 active elements (0 deactivated)
10:55:14 DEBUG opendrift.models.basemodel:1658: to be seeded: 4063, already seeded 5937
10:55:14 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:14 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:14 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:14 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:14 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:14 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:14 DEBUG opendrift.models.basemodel:1253: Data needed for 5972 elements
10:55:14 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:14 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 15:00:00 (before)
2023-08-22 16:00:00 (after)
10:55:14 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 15:00:00) in space (linearNDFast)
10:55:14 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:14 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:14 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:14 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:14 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:14 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:14 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 29.9415 (max)
10:55:14 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:14 DEBUG opendrift.models.basemodel:1527: 5972 active elements
10:55:14 DEBUG opendrift.models.basemodel:1538: 59.097800254731524 <- latitude -> 59.19077442298149
10:55:14 DEBUG opendrift.models.basemodel:1543: 10.83752960211292 <- longitude -> 11.04243548344958
10:55:14 DEBUG opendrift.models.basemodel:1548: -29.33021911060487 <- z -> 0.0
10:55:14 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:14 DEBUG opendrift.models.basemodel:836: Lifting 436 elements to seafloor.
10:55:14 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:14 INFO opendrift.models.basemodel:2882: 2023-08-22 15:22:19.552469 - step 172 of 216 - 5972 active elements (0 deactivated)
10:55:14 DEBUG opendrift.models.basemodel:2888: 4028 elements scheduled.
10:55:14 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:14 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:14 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:14 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:14 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:14 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:14 DEBUG opendrift.models.basemodel:1253: Data needed for 5972 elements
10:55:14 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:14 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:14 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:14 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:14 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:14 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:14 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:14 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:14 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:14 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:14 DEBUG opendrift.models.basemodel:1253: Data needed for 5972 elements
10:55:14 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:14 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 15:00:00 (before)
2023-08-22 16:00:00 (after)
10:55:15 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:15 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:15 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:15 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:15 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:15 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:15 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x29x7) for time after (2023-08-22 16:00:00)
10:55:15 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 15:00:00) in space (linearNDFast)
10:55:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:15 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 16:00:00) in space (linearNDFast)
10:55:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3718 elements, expanding data 1
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3718 elements, expanding data 1
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3923 elements, expanding data 1
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 816 elements, expanding data 2
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 172 elements, expanding data 3
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3923 elements, expanding data 1
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 816 elements, expanding data 2
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 172 elements, expanding data 3
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3923 elements, expanding data 1
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 816 elements, expanding data 2
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 172 elements, expanding data 3
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3923 elements, expanding data 1
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 816 elements, expanding data 2
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 172 elements, expanding data 3
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3923 elements, expanding data 1
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 816 elements, expanding data 2
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 172 elements, expanding data 3
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3923 elements, expanding data 1
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 816 elements, expanding data 2
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 172 elements, expanding data 3
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3923 elements, expanding data 1
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 816 elements, expanding data 2
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 172 elements, expanding data 3
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4986 elements, expanding data 1
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1817 elements, expanding data 2
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4986 elements, expanding data 1
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1817 elements, expanding data 2
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4986 elements, expanding data 1
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1817 elements, expanding data 2
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4986 elements, expanding data 1
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1817 elements, expanding data 2
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4986 elements, expanding data 1
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1817 elements, expanding data 2
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4986 elements, expanding data 1
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1817 elements, expanding data 2
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4986 elements, expanding data 1
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1817 elements, expanding data 2
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3718 elements, expanding data 1
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3718 elements, expanding data 1
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3718 elements, expanding data 1
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3718 elements, expanding data 1
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3718 elements, expanding data 1
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3718 elements, expanding data 1
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3718 elements, expanding data 1
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 2
10:55:15 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:15 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 15:00:00, weight 0.63) and
after (2023-08-22 16:00:00, weight 0.37) in time
10:55:15 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.16248097092104 and -58.957575062735955 degrees.
10:55:15 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.16248097092104 and -58.957575062735955 degrees.
10:55:15 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:15 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:15 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:15 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:15 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:15 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:15 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.828895 (min) 1.07029 (max)
10:55:15 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.897511 (min) 0.821597 (max)
10:55:15 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000420979 (min) 0.000370567 (max)
10:55:15 DEBUG opendrift.models.basemodel:1524: x_wind: -5.83525 (min) 9.80257 (max)
10:55:15 DEBUG opendrift.models.basemodel:1524: y_wind: -3.14857 (min) 11.5299 (max)
10:55:15 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:15 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:15 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:15 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:15 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:15 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:15 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:15 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 29.9415 (max)
10:55:15 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:15 DEBUG opendrift.models.basemodel:1527: 5972 active elements
10:55:15 DEBUG opendrift.models.basemodel:1538: 59.097800254731524 <- latitude -> 59.19077442298149
10:55:15 DEBUG opendrift.models.basemodel:1543: 10.83752960211292 <- longitude -> 11.04243548344958
10:55:15 DEBUG opendrift.models.basemodel:1548: -29.33021911060487 <- z -> 0.0
10:55:15 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:15 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:15 DEBUG opendrift.models.physics_methods:940: min: 0.073620, mean: 4.591510, max: 11.970967
10:55:15 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.073620, mean: 4.591510, max: 11.970967
10:55:15 DEBUG opendrift.models.basemodel:813: 935 elements hit coastline, moving back to water
10:55:15 DEBUG opendrift.models.basemodel:836: Lifting 21 elements to seafloor.
10:55:15 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:15 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:15 DEBUG opendrift.models.physics_methods:741: Advecting 50 of 5972 elements above 0.100m with wind-sheared ocean current (0.004229 m/s - 0.177338 m/s)
10:55:15 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:15 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:15 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.17732533821018218
10:55:15 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:15 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:15 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:15 DEBUG opendrift.models.oceandrift:572: 778 elements penetrated seafloor, lifting up
10:55:15 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:55:15 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:55:15 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:55:15 DEBUG opendrift.models.oceandrift:572: 643 elements penetrated seafloor, lifting up
10:55:15 DEBUG opendrift.models.oceandrift:590: 75 elements reached seafloor, set to bottom
10:55:15 DEBUG opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
10:55:15 DEBUG opendrift.models.sedimentdrift:112: Settling 75 elements at seafloor
10:55:15 DEBUG opendrift.models.oceandrift:572: 605 elements penetrated seafloor, lifting up
10:55:15 DEBUG opendrift.models.oceandrift:590: 67 elements reached seafloor, set to bottom
10:55:15 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
10:55:15 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
10:55:15 DEBUG opendrift.models.oceandrift:572: 599 elements penetrated seafloor, lifting up
10:55:15 DEBUG opendrift.models.oceandrift:590: 70 elements reached seafloor, set to bottom
10:55:15 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
10:55:15 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
10:55:15 DEBUG opendrift.models.oceandrift:572: 585 elements penetrated seafloor, lifting up
10:55:15 DEBUG opendrift.models.oceandrift:590: 54 elements reached seafloor, set to bottom
10:55:15 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
10:55:15 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
10:55:15 DEBUG opendrift.models.oceandrift:572: 527 elements penetrated seafloor, lifting up
10:55:15 DEBUG opendrift.models.oceandrift:590: 64 elements reached seafloor, set to bottom
10:55:15 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
10:55:15 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
10:55:15 DEBUG opendrift.models.oceandrift:572: 512 elements penetrated seafloor, lifting up
10:55:15 DEBUG opendrift.models.oceandrift:590: 40 elements reached seafloor, set to bottom
10:55:15 DEBUG opendrift.models.basemodel:836: Lifting 40 elements to seafloor.
10:55:15 DEBUG opendrift.models.sedimentdrift:112: Settling 40 elements at seafloor
10:55:15 DEBUG opendrift.models.oceandrift:572: 564 elements penetrated seafloor, lifting up
10:55:15 DEBUG opendrift.models.oceandrift:590: 68 elements reached seafloor, set to bottom
10:55:15 DEBUG opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
10:55:15 DEBUG opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
10:55:15 DEBUG opendrift.models.oceandrift:572: 517 elements penetrated seafloor, lifting up
10:55:15 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:55:15 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:55:15 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:55:15 DEBUG opendrift.models.oceandrift:572: 522 elements penetrated seafloor, lifting up
10:55:15 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:55:15 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:55:15 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:55:15 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:15 DEBUG opendrift.models.basemodel:2945: 5972 active elements (0 deactivated)
10:55:15 DEBUG opendrift.models.basemodel:1658: to be seeded: 4028, already seeded 5972
10:55:15 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:15 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:15 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:15 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:15 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:15 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:15 DEBUG opendrift.models.basemodel:1253: Data needed for 6007 elements
10:55:15 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:15 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 15:00:00 (before)
2023-08-22 16:00:00 (after)
10:55:15 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 15:00:00) in space (linearNDFast)
10:55:15 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:15 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:15 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:15 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:15 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:15 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:15 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 30.6294 (max)
10:55:15 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:15 DEBUG opendrift.models.basemodel:1527: 6007 active elements
10:55:15 DEBUG opendrift.models.basemodel:1538: 59.09837620294388 <- latitude -> 59.190613571774385
10:55:15 DEBUG opendrift.models.basemodel:1543: 10.838900397048942 <- longitude -> 11.043908824595519
10:55:15 DEBUG opendrift.models.basemodel:1548: -29.9415225982666 <- z -> 0.0
10:55:15 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:15 DEBUG opendrift.models.basemodel:836: Lifting 399 elements to seafloor.
10:55:15 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:15 INFO opendrift.models.basemodel:2882: 2023-08-22 15:32:19.552469 - step 173 of 216 - 6007 active elements (0 deactivated)
10:55:15 DEBUG opendrift.models.basemodel:2888: 3993 elements scheduled.
10:55:15 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:15 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:15 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:15 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:15 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:15 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:15 DEBUG opendrift.models.basemodel:1253: Data needed for 6007 elements
10:55:15 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:15 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:15 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:15 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:15 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:15 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:15 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:15 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:15 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:15 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:15 DEBUG opendrift.models.basemodel:1253: Data needed for 6007 elements
10:55:15 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:15 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 15:00:00 (before)
2023-08-22 16:00:00 (after)
10:55:16 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:16 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:16 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:16 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:16 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:16 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:16 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x30x7) for time after (2023-08-22 16:00:00)
10:55:16 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 15:00:00) in space (linearNDFast)
10:55:16 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:16 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 16:00:00) in space (linearNDFast)
10:55:16 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3780 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 175 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3780 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 175 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3997 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 807 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3997 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 807 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3997 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 807 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3997 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 807 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3997 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 807 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3997 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 807 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3997 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 807 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 166 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5032 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1851 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5032 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1851 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5032 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1851 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5032 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1851 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5032 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1851 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5032 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1851 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5032 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1851 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3780 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 175 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3780 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 175 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3780 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 175 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3780 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 175 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3780 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 175 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3780 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 175 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3780 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 175 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:16 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 15:00:00, weight 0.46) and
after (2023-08-22 16:00:00, weight 0.54) in time
10:55:16 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.16111017431089 and -58.95610172423801 degrees.
10:55:16 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.16111017431089 and -58.95610172423801 degrees.
10:55:16 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:16 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:16 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:16 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:16 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:16 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:16 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.812885 (min) 1.05124 (max)
10:55:16 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.958939 (min) 0.998819 (max)
10:55:16 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000433182 (min) 0.000368535 (max)
10:55:16 DEBUG opendrift.models.basemodel:1524: x_wind: -3.9266 (min) 10.8014 (max)
10:55:16 DEBUG opendrift.models.basemodel:1524: y_wind: -4.1772 (min) 11.3439 (max)
10:55:16 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:16 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:16 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:16 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:16 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:16 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:16 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:16 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 30.6294 (max)
10:55:16 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:16 DEBUG opendrift.models.basemodel:1527: 6007 active elements
10:55:16 DEBUG opendrift.models.basemodel:1538: 59.09837620294388 <- latitude -> 59.190613571774385
10:55:16 DEBUG opendrift.models.basemodel:1543: 10.838900397048942 <- longitude -> 11.043908824595519
10:55:16 DEBUG opendrift.models.basemodel:1548: -29.9415225982666 <- z -> 0.0
10:55:16 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:16 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:16 DEBUG opendrift.models.physics_methods:940: min: 0.121572, mean: 4.540008, max: 11.583394
10:55:16 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.121572, mean: 4.540008, max: 11.583394
10:55:16 DEBUG opendrift.models.basemodel:813: 971 elements hit coastline, moving back to water
10:55:16 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:55:16 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:16 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:16 DEBUG opendrift.models.physics_methods:741: Advecting 48 of 6007 elements above 0.100m with wind-sheared ocean current (0.002410 m/s - 0.216019 m/s)
10:55:16 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:16 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:16 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.16602930722053524
10:55:16 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:16 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:16 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:16 DEBUG opendrift.models.oceandrift:572: 750 elements penetrated seafloor, lifting up
10:55:16 DEBUG opendrift.models.oceandrift:590: 87 elements reached seafloor, set to bottom
10:55:16 DEBUG opendrift.models.basemodel:836: Lifting 87 elements to seafloor.
10:55:16 DEBUG opendrift.models.sedimentdrift:112: Settling 87 elements at seafloor
10:55:16 DEBUG opendrift.models.oceandrift:572: 619 elements penetrated seafloor, lifting up
10:55:16 DEBUG opendrift.models.oceandrift:590: 64 elements reached seafloor, set to bottom
10:55:16 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
10:55:16 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
10:55:16 DEBUG opendrift.models.oceandrift:572: 606 elements penetrated seafloor, lifting up
10:55:16 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:55:16 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:55:16 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:55:16 DEBUG opendrift.models.oceandrift:572: 588 elements penetrated seafloor, lifting up
10:55:16 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:55:16 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:55:16 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:55:16 DEBUG opendrift.models.oceandrift:572: 534 elements penetrated seafloor, lifting up
10:55:16 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:55:16 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:55:16 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:55:16 DEBUG opendrift.models.oceandrift:572: 531 elements penetrated seafloor, lifting up
10:55:16 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:55:16 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:55:16 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:55:16 DEBUG opendrift.models.oceandrift:572: 501 elements penetrated seafloor, lifting up
10:55:16 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:55:16 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:55:16 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:55:16 DEBUG opendrift.models.oceandrift:572: 511 elements penetrated seafloor, lifting up
10:55:16 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:55:16 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:55:16 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:55:16 DEBUG opendrift.models.oceandrift:572: 519 elements penetrated seafloor, lifting up
10:55:16 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:55:16 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:55:16 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:55:16 DEBUG opendrift.models.oceandrift:572: 537 elements penetrated seafloor, lifting up
10:55:16 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:55:16 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:55:16 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:55:16 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:16 DEBUG opendrift.models.basemodel:2945: 6007 active elements (0 deactivated)
10:55:16 DEBUG opendrift.models.basemodel:1658: to be seeded: 3993, already seeded 6007
10:55:16 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:16 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:16 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:16 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:16 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:16 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:16 DEBUG opendrift.models.basemodel:1253: Data needed for 6042 elements
10:55:16 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:16 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 15:00:00 (before)
2023-08-22 16:00:00 (after)
10:55:16 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 15:00:00) in space (linearNDFast)
10:55:16 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:16 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:16 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:16 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:16 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:16 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:16 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 30.6294 (max)
10:55:16 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:16 DEBUG opendrift.models.basemodel:1527: 6042 active elements
10:55:16 DEBUG opendrift.models.basemodel:1538: 59.09960641029093 <- latitude -> 59.19077303622948
10:55:16 DEBUG opendrift.models.basemodel:1543: 10.837528252096055 <- longitude -> 11.044959088181253
10:55:16 DEBUG opendrift.models.basemodel:1548: -29.9415225982666 <- z -> 0.0
10:55:16 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:16 DEBUG opendrift.models.basemodel:836: Lifting 392 elements to seafloor.
10:55:16 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:16 INFO opendrift.models.basemodel:2882: 2023-08-22 15:42:19.552469 - step 174 of 216 - 6042 active elements (0 deactivated)
10:55:16 DEBUG opendrift.models.basemodel:2888: 3958 elements scheduled.
10:55:16 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:16 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:16 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:16 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:16 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:16 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:16 DEBUG opendrift.models.basemodel:1253: Data needed for 6042 elements
10:55:16 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:16 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:16 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:16 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:16 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:16 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:16 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:16 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:16 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:16 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:16 DEBUG opendrift.models.basemodel:1253: Data needed for 6042 elements
10:55:16 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:16 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 15:00:00 (before)
2023-08-22 16:00:00 (after)
10:55:16 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:16 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:16 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:16 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:16 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:16 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:16 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x30x7) for time after (2023-08-22 16:00:00)
10:55:16 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 15:00:00) in space (linearNDFast)
10:55:16 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:16 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 16:00:00) in space (linearNDFast)
10:55:16 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3805 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 189 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3805 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 189 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4026 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 821 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 186 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4026 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 821 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 186 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4026 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 821 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 186 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4026 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 821 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 186 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4026 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 821 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 186 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4026 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 821 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 186 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4026 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 821 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 186 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5068 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1874 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5068 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1874 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5068 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1874 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5068 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1874 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5068 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1874 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5068 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1874 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5068 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1874 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3805 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 189 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3805 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 189 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3805 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 189 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3805 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 189 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3805 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 189 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3805 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 189 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3805 elements, expanding data 1
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 189 elements, expanding data 2
10:55:16 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:16 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 15:00:00, weight 0.29) and
after (2023-08-22 16:00:00, weight 0.71) in time
10:55:16 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.16248231787181 and -58.95505147495164 degrees.
10:55:16 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.16248231787181 and -58.95505147495164 degrees.
10:55:16 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:16 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:16 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:16 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:16 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:16 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:16 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.787378 (min) 1.06784 (max)
10:55:16 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.970441 (min) 0.797242 (max)
10:55:16 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000318969 (min) 0.000415075 (max)
10:55:16 DEBUG opendrift.models.basemodel:1524: x_wind: -4.33216 (min) 10.8802 (max)
10:55:16 DEBUG opendrift.models.basemodel:1524: y_wind: -2.93555 (min) 10.6078 (max)
10:55:16 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:16 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:16 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:16 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:16 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:16 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:16 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:16 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 30.6294 (max)
10:55:16 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:16 DEBUG opendrift.models.basemodel:1527: 6042 active elements
10:55:16 DEBUG opendrift.models.basemodel:1538: 59.09960641029093 <- latitude -> 59.19077303622948
10:55:16 DEBUG opendrift.models.basemodel:1543: 10.837528252096055 <- longitude -> 11.044959088181253
10:55:16 DEBUG opendrift.models.basemodel:1548: -29.9415225982666 <- z -> 0.0
10:55:16 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:16 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:16 DEBUG opendrift.models.physics_methods:940: min: 0.075402, mean: 4.552931, max: 10.859742
10:55:16 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.075402, mean: 4.552931, max: 10.859742
10:55:16 DEBUG opendrift.models.basemodel:813: 955 elements hit coastline, moving back to water
10:55:16 DEBUG opendrift.models.basemodel:836: Lifting 145 elements to seafloor.
10:55:16 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:16 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:16 DEBUG opendrift.models.physics_methods:741: Advecting 46 of 6042 elements above 0.100m with wind-sheared ocean current (0.001627 m/s - 0.188550 m/s)
10:55:17 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:17 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:17 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.14593301754243848
10:55:17 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:17 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:17 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:17 DEBUG opendrift.models.oceandrift:572: 739 elements penetrated seafloor, lifting up
10:55:17 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:55:17 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:55:17 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:55:17 DEBUG opendrift.models.oceandrift:572: 642 elements penetrated seafloor, lifting up
10:55:17 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:55:17 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:55:17 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:55:17 DEBUG opendrift.models.oceandrift:572: 606 elements penetrated seafloor, lifting up
10:55:17 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:55:17 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:55:17 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:55:17 DEBUG opendrift.models.oceandrift:572: 570 elements penetrated seafloor, lifting up
10:55:17 DEBUG opendrift.models.oceandrift:590: 65 elements reached seafloor, set to bottom
10:55:17 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
10:55:17 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
10:55:17 DEBUG opendrift.models.oceandrift:572: 551 elements penetrated seafloor, lifting up
10:55:17 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:55:17 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:55:17 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:55:17 DEBUG opendrift.models.oceandrift:572: 519 elements penetrated seafloor, lifting up
10:55:17 DEBUG opendrift.models.oceandrift:590: 62 elements reached seafloor, set to bottom
10:55:17 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
10:55:17 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
10:55:17 DEBUG opendrift.models.oceandrift:572: 522 elements penetrated seafloor, lifting up
10:55:17 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:55:17 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:55:17 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:55:17 DEBUG opendrift.models.oceandrift:572: 519 elements penetrated seafloor, lifting up
10:55:17 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:55:17 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:55:17 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:55:17 DEBUG opendrift.models.oceandrift:572: 550 elements penetrated seafloor, lifting up
10:55:17 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:55:17 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:55:17 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:55:17 DEBUG opendrift.models.oceandrift:572: 488 elements penetrated seafloor, lifting up
10:55:17 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:55:17 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:55:17 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:55:17 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:17 DEBUG opendrift.models.basemodel:2945: 6042 active elements (0 deactivated)
10:55:17 DEBUG opendrift.models.basemodel:1658: to be seeded: 3958, already seeded 6042
10:55:17 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:55:17 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:17 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:17 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:17 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:17 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:17 DEBUG opendrift.models.basemodel:1253: Data needed for 6076 elements
10:55:17 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:17 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 15:00:00 (before)
2023-08-22 16:00:00 (after)
10:55:17 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 15:00:00) in space (linearNDFast)
10:55:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:17 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:17 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:17 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:17 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:17 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:17 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 30.6294 (max)
10:55:17 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:17 DEBUG opendrift.models.basemodel:1527: 6076 active elements
10:55:17 DEBUG opendrift.models.basemodel:1538: 59.099963731838955 <- latitude -> 59.19165037635236
10:55:17 DEBUG opendrift.models.basemodel:1543: 10.835764018763745 <- longitude -> 11.04202268533441
10:55:17 DEBUG opendrift.models.basemodel:1548: -29.9415225982666 <- z -> 0.0
10:55:17 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:17 DEBUG opendrift.models.basemodel:836: Lifting 359 elements to seafloor.
10:55:17 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:17 INFO opendrift.models.basemodel:2882: 2023-08-22 15:52:19.552469 - step 175 of 216 - 6076 active elements (0 deactivated)
10:55:17 DEBUG opendrift.models.basemodel:2888: 3924 elements scheduled.
10:55:17 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:17 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:17 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:17 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:17 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:17 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:17 DEBUG opendrift.models.basemodel:1253: Data needed for 6076 elements
10:55:17 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:17 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:17 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:17 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:17 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:17 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:17 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:17 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:17 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:17 DEBUG opendrift.models.basemodel:1253: Data needed for 6076 elements
10:55:17 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:17 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 15:00:00 (before)
2023-08-22 16:00:00 (after)
10:55:17 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:17 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:17 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:17 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:17 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:17 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:17 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x30x7) for time after (2023-08-22 16:00:00)
10:55:17 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 15:00:00) in space (linearNDFast)
10:55:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:17 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 16:00:00) in space (linearNDFast)
10:55:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3844 elements, expanding data 1
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 186 elements, expanding data 2
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3844 elements, expanding data 1
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 186 elements, expanding data 2
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4076 elements, expanding data 1
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 826 elements, expanding data 2
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 178 elements, expanding data 3
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4076 elements, expanding data 1
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 826 elements, expanding data 2
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 178 elements, expanding data 3
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4076 elements, expanding data 1
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 826 elements, expanding data 2
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 178 elements, expanding data 3
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4076 elements, expanding data 1
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 826 elements, expanding data 2
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 178 elements, expanding data 3
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4076 elements, expanding data 1
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 826 elements, expanding data 2
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 178 elements, expanding data 3
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4076 elements, expanding data 1
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 826 elements, expanding data 2
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 178 elements, expanding data 3
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4076 elements, expanding data 1
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 826 elements, expanding data 2
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 178 elements, expanding data 3
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5106 elements, expanding data 1
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1888 elements, expanding data 2
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5106 elements, expanding data 1
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1888 elements, expanding data 2
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5106 elements, expanding data 1
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1888 elements, expanding data 2
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5106 elements, expanding data 1
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1888 elements, expanding data 2
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5106 elements, expanding data 1
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1888 elements, expanding data 2
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5106 elements, expanding data 1
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1888 elements, expanding data 2
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5106 elements, expanding data 1
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1888 elements, expanding data 2
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3844 elements, expanding data 1
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 186 elements, expanding data 2
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3844 elements, expanding data 1
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 186 elements, expanding data 2
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3844 elements, expanding data 1
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 186 elements, expanding data 2
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3844 elements, expanding data 1
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 186 elements, expanding data 2
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3844 elements, expanding data 1
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 186 elements, expanding data 2
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3844 elements, expanding data 1
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 186 elements, expanding data 2
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3844 elements, expanding data 1
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 186 elements, expanding data 2
10:55:17 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:17 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 15:00:00, weight 0.13) and
after (2023-08-22 16:00:00, weight 0.87) in time
10:55:17 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.16424655052798 and -58.957987856755594 degrees.
10:55:17 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.16424655052798 and -58.957987856755594 degrees.
10:55:17 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:17 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:17 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:17 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:17 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:17 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:17 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.837712 (min) 0.972085 (max)
10:55:17 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.870314 (min) 0.962954 (max)
10:55:17 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000479242 (min) 0.000431621 (max)
10:55:17 DEBUG opendrift.models.basemodel:1524: x_wind: -3.60836 (min) 10.3885 (max)
10:55:17 DEBUG opendrift.models.basemodel:1524: y_wind: -2.65607 (min) 12.5533 (max)
10:55:17 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:17 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:17 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:17 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:17 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:17 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:17 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:17 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 30.6294 (max)
10:55:17 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:17 DEBUG opendrift.models.basemodel:1527: 6076 active elements
10:55:17 DEBUG opendrift.models.basemodel:1538: 59.099963731838955 <- latitude -> 59.19165037635236
10:55:17 DEBUG opendrift.models.basemodel:1543: 10.835764018763745 <- longitude -> 11.04202268533441
10:55:17 DEBUG opendrift.models.basemodel:1548: -29.9415225982666 <- z -> 0.0
10:55:17 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:17 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:17 DEBUG opendrift.models.physics_methods:940: min: 0.186778, mean: 4.497466, max: 10.982610
10:55:17 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.186778, mean: 4.497466, max: 10.982610
10:55:17 DEBUG opendrift.models.basemodel:813: 1025 elements hit coastline, moving back to water
10:55:17 DEBUG opendrift.models.basemodel:836: Lifting 9 elements to seafloor.
10:55:17 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:17 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:17 DEBUG opendrift.models.physics_methods:741: Advecting 49 of 6076 elements above 0.100m with wind-sheared ocean current (0.007179 m/s - 0.218282 m/s)
10:55:17 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:17 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:17 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.14925380775077818
10:55:17 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:17 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:17 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:17 DEBUG opendrift.models.oceandrift:572: 752 elements penetrated seafloor, lifting up
10:55:17 DEBUG opendrift.models.oceandrift:590: 63 elements reached seafloor, set to bottom
10:55:17 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
10:55:17 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
10:55:17 DEBUG opendrift.models.oceandrift:572: 628 elements penetrated seafloor, lifting up
10:55:17 DEBUG opendrift.models.oceandrift:590: 62 elements reached seafloor, set to bottom
10:55:17 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
10:55:17 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
10:55:17 DEBUG opendrift.models.oceandrift:572: 563 elements penetrated seafloor, lifting up
10:55:17 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:55:17 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:55:17 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:55:17 DEBUG opendrift.models.oceandrift:572: 565 elements penetrated seafloor, lifting up
10:55:17 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:55:17 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:55:17 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:55:17 DEBUG opendrift.models.oceandrift:572: 538 elements penetrated seafloor, lifting up
10:55:17 DEBUG opendrift.models.oceandrift:590: 66 elements reached seafloor, set to bottom
10:55:17 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
10:55:17 DEBUG opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
10:55:17 DEBUG opendrift.models.oceandrift:572: 533 elements penetrated seafloor, lifting up
10:55:17 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:55:17 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:55:17 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:55:17 DEBUG opendrift.models.oceandrift:572: 513 elements penetrated seafloor, lifting up
10:55:17 DEBUG opendrift.models.oceandrift:590: 53 elements reached seafloor, set to bottom
10:55:17 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
10:55:17 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
10:55:17 DEBUG opendrift.models.oceandrift:572: 516 elements penetrated seafloor, lifting up
10:55:17 DEBUG opendrift.models.oceandrift:590: 41 elements reached seafloor, set to bottom
10:55:17 DEBUG opendrift.models.basemodel:836: Lifting 41 elements to seafloor.
10:55:17 DEBUG opendrift.models.sedimentdrift:112: Settling 41 elements at seafloor
10:55:17 DEBUG opendrift.models.oceandrift:572: 524 elements penetrated seafloor, lifting up
10:55:17 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:55:17 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:55:17 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:55:17 DEBUG opendrift.models.oceandrift:572: 488 elements penetrated seafloor, lifting up
10:55:17 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:55:17 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:55:17 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:55:17 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:17 DEBUG opendrift.models.basemodel:2945: 6076 active elements (0 deactivated)
10:55:17 DEBUG opendrift.models.basemodel:1658: to be seeded: 3924, already seeded 6076
10:55:17 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:17 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:17 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:17 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:17 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:17 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:17 DEBUG opendrift.models.basemodel:1253: Data needed for 6111 elements
10:55:17 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:17 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 16:00:00 (before)
2023-08-22 17:00:00 (after)
10:55:17 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 16:00:00) in space (linearNDFast)
10:55:17 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:17 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:17 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:17 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:17 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:17 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:17 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 30.6294 (max)
10:55:17 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:17 DEBUG opendrift.models.basemodel:1527: 6111 active elements
10:55:17 DEBUG opendrift.models.basemodel:1538: 59.09815882984442 <- latitude -> 59.18979942325727
10:55:17 DEBUG opendrift.models.basemodel:1543: 10.834684915391238 <- longitude -> 11.043594041022196
10:55:17 DEBUG opendrift.models.basemodel:1548: -29.9415225982666 <- z -> 0.0
10:55:17 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:17 DEBUG opendrift.models.basemodel:836: Lifting 374 elements to seafloor.
10:55:17 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:17 INFO opendrift.models.basemodel:2882: 2023-08-22 16:02:19.552469 - step 176 of 216 - 6111 active elements (0 deactivated)
10:55:17 DEBUG opendrift.models.basemodel:2888: 3889 elements scheduled.
10:55:17 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:17 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:17 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:17 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:17 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:17 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:17 DEBUG opendrift.models.basemodel:1253: Data needed for 6111 elements
10:55:17 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:17 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:17 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:17 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:17 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:17 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:17 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:17 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:17 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:17 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:17 DEBUG opendrift.models.basemodel:1253: Data needed for 6111 elements
10:55:17 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:17 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 16:00:00 (before)
2023-08-22 17:00:00 (after)
10:55:19 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:19 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:19 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:19 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:19 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:19 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:19 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x30x7) for time after (2023-08-22 17:00:00)
10:55:19 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 16:00:00) in space (linearNDFast)
10:55:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:19 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 17:00:00) in space (linearNDFast)
10:55:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3899 elements, expanding data 1
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 198 elements, expanding data 2
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3899 elements, expanding data 1
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 198 elements, expanding data 2
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4109 elements, expanding data 1
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 832 elements, expanding data 2
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 191 elements, expanding data 3
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 4
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4109 elements, expanding data 1
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 832 elements, expanding data 2
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 191 elements, expanding data 3
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 4
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4109 elements, expanding data 1
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 832 elements, expanding data 2
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 191 elements, expanding data 3
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 4
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4109 elements, expanding data 1
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 832 elements, expanding data 2
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 191 elements, expanding data 3
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 4
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4109 elements, expanding data 1
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 832 elements, expanding data 2
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 191 elements, expanding data 3
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 4
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4109 elements, expanding data 1
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 832 elements, expanding data 2
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 191 elements, expanding data 3
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 4
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4109 elements, expanding data 1
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 832 elements, expanding data 2
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 191 elements, expanding data 3
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 4
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5146 elements, expanding data 1
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1904 elements, expanding data 2
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5146 elements, expanding data 1
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1904 elements, expanding data 2
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5146 elements, expanding data 1
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1904 elements, expanding data 2
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5146 elements, expanding data 1
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1904 elements, expanding data 2
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5146 elements, expanding data 1
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1904 elements, expanding data 2
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5146 elements, expanding data 1
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1904 elements, expanding data 2
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5146 elements, expanding data 1
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1904 elements, expanding data 2
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3899 elements, expanding data 1
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 198 elements, expanding data 2
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3899 elements, expanding data 1
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 198 elements, expanding data 2
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3899 elements, expanding data 1
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 198 elements, expanding data 2
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3899 elements, expanding data 1
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 198 elements, expanding data 2
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3899 elements, expanding data 1
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 198 elements, expanding data 2
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3899 elements, expanding data 1
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 198 elements, expanding data 2
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3899 elements, expanding data 1
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 198 elements, expanding data 2
10:55:19 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:55:19 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 16:00:00, weight 0.96) and
after (2023-08-22 17:00:00, weight 0.04) in time
10:55:19 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.16532566336036 and -58.956416500915466 degrees.
10:55:19 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.16532566336036 and -58.956416500915466 degrees.
10:55:19 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:19 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:19 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:19 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:19 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:19 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:19 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.67991 (min) 1.17484 (max)
10:55:19 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.958341 (min) 0.847645 (max)
10:55:19 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000489035 (min) 0.000425415 (max)
10:55:19 DEBUG opendrift.models.basemodel:1524: x_wind: -4.09714 (min) 11.0734 (max)
10:55:19 DEBUG opendrift.models.basemodel:1524: y_wind: -4.82185 (min) 12.031 (max)
10:55:19 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:19 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:19 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:19 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:19 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:19 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:19 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:19 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 30.6294 (max)
10:55:19 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:19 DEBUG opendrift.models.basemodel:1527: 6111 active elements
10:55:19 DEBUG opendrift.models.basemodel:1538: 59.09815882984442 <- latitude -> 59.18979942325727
10:55:19 DEBUG opendrift.models.basemodel:1543: 10.834684915391238 <- longitude -> 11.043594041022196
10:55:19 DEBUG opendrift.models.basemodel:1548: -29.9415225982666 <- z -> 0.0
10:55:19 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:19 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:19 DEBUG opendrift.models.physics_methods:940: min: 0.055909, mean: 4.462333, max: 10.706234
10:55:19 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.055909, mean: 4.462333, max: 10.706234
10:55:19 DEBUG opendrift.models.basemodel:813: 1047 elements hit coastline, moving back to water
10:55:19 DEBUG opendrift.models.basemodel:836: Lifting 110 elements to seafloor.
10:55:19 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:19 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:19 DEBUG opendrift.models.physics_methods:741: Advecting 45 of 6111 elements above 0.100m with wind-sheared ocean current (0.004819 m/s - 0.183622 m/s)
10:55:19 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:19 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:19 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.14183659150417324
10:55:19 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:19 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:19 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:19 DEBUG opendrift.models.oceandrift:572: 709 elements penetrated seafloor, lifting up
10:55:19 DEBUG opendrift.models.oceandrift:590: 68 elements reached seafloor, set to bottom
10:55:19 DEBUG opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
10:55:19 DEBUG opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
10:55:19 DEBUG opendrift.models.oceandrift:572: 651 elements penetrated seafloor, lifting up
10:55:19 DEBUG opendrift.models.oceandrift:590: 60 elements reached seafloor, set to bottom
10:55:19 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
10:55:19 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
10:55:19 DEBUG opendrift.models.oceandrift:572: 623 elements penetrated seafloor, lifting up
10:55:19 DEBUG opendrift.models.oceandrift:590: 69 elements reached seafloor, set to bottom
10:55:19 DEBUG opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
10:55:19 DEBUG opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
10:55:19 DEBUG opendrift.models.oceandrift:572: 607 elements penetrated seafloor, lifting up
10:55:19 DEBUG opendrift.models.oceandrift:590: 62 elements reached seafloor, set to bottom
10:55:19 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
10:55:19 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
10:55:19 DEBUG opendrift.models.oceandrift:572: 536 elements penetrated seafloor, lifting up
10:55:19 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:55:19 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:55:19 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:55:19 DEBUG opendrift.models.oceandrift:572: 572 elements penetrated seafloor, lifting up
10:55:19 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:55:19 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:55:19 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:55:19 DEBUG opendrift.models.oceandrift:572: 533 elements penetrated seafloor, lifting up
10:55:19 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:55:19 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:55:19 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:55:19 DEBUG opendrift.models.oceandrift:572: 554 elements penetrated seafloor, lifting up
10:55:19 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:55:19 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:55:19 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:55:19 DEBUG opendrift.models.oceandrift:572: 550 elements penetrated seafloor, lifting up
10:55:19 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:55:19 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:55:19 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:55:19 DEBUG opendrift.models.oceandrift:572: 498 elements penetrated seafloor, lifting up
10:55:19 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:55:19 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:55:19 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:55:19 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:19 DEBUG opendrift.models.basemodel:2945: 6111 active elements (0 deactivated)
10:55:19 DEBUG opendrift.models.basemodel:1658: to be seeded: 3889, already seeded 6111
10:55:19 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:19 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:19 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:19 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:19 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:19 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:19 DEBUG opendrift.models.basemodel:1253: Data needed for 6146 elements
10:55:19 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:19 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 16:00:00 (before)
2023-08-22 17:00:00 (after)
10:55:19 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 16:00:00) in space (linearNDFast)
10:55:19 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:19 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:19 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:19 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:19 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:19 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:19 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 30.6294 (max)
10:55:19 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:19 DEBUG opendrift.models.basemodel:1527: 6146 active elements
10:55:19 DEBUG opendrift.models.basemodel:1538: 59.09826701910245 <- latitude -> 59.18986544598524
10:55:19 DEBUG opendrift.models.basemodel:1543: 10.831798696330312 <- longitude -> 11.041565656041682
10:55:19 DEBUG opendrift.models.basemodel:1548: -29.9315225982666 <- z -> 0.0
10:55:19 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:19 DEBUG opendrift.models.basemodel:836: Lifting 366 elements to seafloor.
10:55:19 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:19 INFO opendrift.models.basemodel:2882: 2023-08-22 16:12:19.552469 - step 177 of 216 - 6146 active elements (0 deactivated)
10:55:19 DEBUG opendrift.models.basemodel:2888: 3854 elements scheduled.
10:55:19 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:19 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:19 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:19 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:19 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:19 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:19 DEBUG opendrift.models.basemodel:1253: Data needed for 6146 elements
10:55:19 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:19 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:19 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:19 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:19 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:19 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:19 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:19 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:19 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:19 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:19 DEBUG opendrift.models.basemodel:1253: Data needed for 6146 elements
10:55:19 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:19 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 16:00:00 (before)
2023-08-22 17:00:00 (after)
10:55:20 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:20 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:20 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:20 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:20 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:20 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:20 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x30x7) for time after (2023-08-22 17:00:00)
10:55:20 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 16:00:00) in space (linearNDFast)
10:55:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:20 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 17:00:00) in space (linearNDFast)
10:55:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3961 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 191 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3961 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 191 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4158 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4158 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4158 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4158 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4158 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4158 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4158 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 846 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 181 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5206 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1942 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5206 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1942 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5206 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1942 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5206 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1942 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5206 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1942 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5206 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1942 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5206 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1942 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3961 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 191 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3961 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 191 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3961 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 191 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3961 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 191 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3961 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 191 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3961 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 191 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3961 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 191 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:20 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 16:00:00, weight 0.79) and
after (2023-08-22 17:00:00, weight 0.21) in time
10:55:20 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.16821187086732 and -58.95844489261942 degrees.
10:55:20 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.16821187086732 and -58.95844489261942 degrees.
10:55:20 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:20 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:20 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:20 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:20 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:20 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:20 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.796531 (min) 0.983377 (max)
10:55:20 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.904453 (min) 0.857796 (max)
10:55:20 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000432514 (min) 0.000371843 (max)
10:55:20 DEBUG opendrift.models.basemodel:1524: x_wind: -4.80032 (min) 10.2217 (max)
10:55:20 DEBUG opendrift.models.basemodel:1524: y_wind: -4.19647 (min) 11.2925 (max)
10:55:20 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:20 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:20 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:20 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:20 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:20 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:20 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:20 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 30.6294 (max)
10:55:20 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:20 DEBUG opendrift.models.basemodel:1527: 6146 active elements
10:55:20 DEBUG opendrift.models.basemodel:1538: 59.09826701910245 <- latitude -> 59.18986544598524
10:55:20 DEBUG opendrift.models.basemodel:1543: 10.831798696330312 <- longitude -> 11.041565656041682
10:55:20 DEBUG opendrift.models.basemodel:1548: -29.9315225982666 <- z -> 0.0
10:55:20 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:20 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:20 DEBUG opendrift.models.physics_methods:940: min: 0.071150, mean: 4.391056, max: 10.675220
10:55:20 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.071150, mean: 4.391056, max: 10.675220
10:55:20 DEBUG opendrift.models.basemodel:813: 1049 elements hit coastline, moving back to water
10:55:20 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:55:20 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:20 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:20 DEBUG opendrift.models.physics_methods:741: Advecting 51 of 6146 elements above 0.100m with wind-sheared ocean current (0.000621 m/s - 0.163842 m/s)
10:55:20 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:20 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:20 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.1410160492339897
10:55:20 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:20 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:20 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:20 DEBUG opendrift.models.oceandrift:572: 748 elements penetrated seafloor, lifting up
10:55:20 DEBUG opendrift.models.oceandrift:590: 68 elements reached seafloor, set to bottom
10:55:20 DEBUG opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
10:55:20 DEBUG opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
10:55:20 DEBUG opendrift.models.oceandrift:572: 594 elements penetrated seafloor, lifting up
10:55:20 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:55:20 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:55:20 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:55:20 DEBUG opendrift.models.oceandrift:572: 610 elements penetrated seafloor, lifting up
10:55:20 DEBUG opendrift.models.oceandrift:590: 60 elements reached seafloor, set to bottom
10:55:20 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
10:55:20 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
10:55:20 DEBUG opendrift.models.oceandrift:572: 604 elements penetrated seafloor, lifting up
10:55:20 DEBUG opendrift.models.oceandrift:590: 65 elements reached seafloor, set to bottom
10:55:20 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
10:55:20 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
10:55:20 DEBUG opendrift.models.oceandrift:572: 560 elements penetrated seafloor, lifting up
10:55:20 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:55:20 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:55:20 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:55:20 DEBUG opendrift.models.oceandrift:572: 561 elements penetrated seafloor, lifting up
10:55:20 DEBUG opendrift.models.oceandrift:590: 36 elements reached seafloor, set to bottom
10:55:20 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
10:55:20 DEBUG opendrift.models.sedimentdrift:112: Settling 36 elements at seafloor
10:55:20 DEBUG opendrift.models.oceandrift:572: 492 elements penetrated seafloor, lifting up
10:55:20 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:55:20 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:55:20 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:55:20 DEBUG opendrift.models.oceandrift:572: 572 elements penetrated seafloor, lifting up
10:55:20 DEBUG opendrift.models.oceandrift:590: 67 elements reached seafloor, set to bottom
10:55:20 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
10:55:20 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
10:55:20 DEBUG opendrift.models.oceandrift:572: 526 elements penetrated seafloor, lifting up
10:55:20 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:55:20 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:55:20 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:55:20 DEBUG opendrift.models.oceandrift:572: 519 elements penetrated seafloor, lifting up
10:55:20 DEBUG opendrift.models.oceandrift:590: 64 elements reached seafloor, set to bottom
10:55:20 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
10:55:20 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
10:55:20 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:20 DEBUG opendrift.models.basemodel:2945: 6146 active elements (0 deactivated)
10:55:20 DEBUG opendrift.models.basemodel:1658: to be seeded: 3854, already seeded 6146
10:55:20 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:55:20 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:20 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:20 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:20 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:20 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:20 DEBUG opendrift.models.basemodel:1253: Data needed for 6180 elements
10:55:20 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:20 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 16:00:00 (before)
2023-08-22 17:00:00 (after)
10:55:20 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 16:00:00) in space (linearNDFast)
10:55:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:20 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:20 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:20 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:20 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:20 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:20 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 32.7616 (max)
10:55:20 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:20 DEBUG opendrift.models.basemodel:1527: 6180 active elements
10:55:20 DEBUG opendrift.models.basemodel:1538: 59.0987346310647 <- latitude -> 59.18945655992799
10:55:20 DEBUG opendrift.models.basemodel:1543: 10.830363900704343 <- longitude -> 11.041526857013022
10:55:20 DEBUG opendrift.models.basemodel:1548: -28.16849423483014 <- z -> 0.0
10:55:20 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:20 DEBUG opendrift.models.basemodel:836: Lifting 414 elements to seafloor.
10:55:20 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:20 INFO opendrift.models.basemodel:2882: 2023-08-22 16:22:19.552469 - step 178 of 216 - 6180 active elements (0 deactivated)
10:55:20 DEBUG opendrift.models.basemodel:2888: 3820 elements scheduled.
10:55:20 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:20 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:20 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:20 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:20 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:20 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:20 DEBUG opendrift.models.basemodel:1253: Data needed for 6180 elements
10:55:20 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:20 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:20 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:20 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:20 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:20 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:20 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:20 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:20 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:20 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:20 DEBUG opendrift.models.basemodel:1253: Data needed for 6180 elements
10:55:20 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:20 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 16:00:00 (before)
2023-08-22 17:00:00 (after)
10:55:20 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:20 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:20 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:20 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:20 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:20 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:20 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x30x7) for time after (2023-08-22 17:00:00)
10:55:20 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 16:00:00) in space (linearNDFast)
10:55:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:20 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 17:00:00) in space (linearNDFast)
10:55:20 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4003 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4003 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4202 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 842 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 202 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4202 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 842 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 202 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4202 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 842 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 202 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4202 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 842 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 202 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4202 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 842 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 202 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4202 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 842 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 202 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4202 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 842 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 202 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5245 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1981 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5245 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1981 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5245 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1981 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5245 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1981 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5245 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1981 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5245 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1981 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5245 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1981 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4003 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4003 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4003 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4003 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4003 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4003 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4003 elements, expanding data 1
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
10:55:20 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:20 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 16:00:00, weight 0.63) and
after (2023-08-22 17:00:00, weight 0.37) in time
10:55:20 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.1696466628631 and -58.95848369950202 degrees.
10:55:20 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.1696466628631 and -58.95848369950202 degrees.
10:55:21 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:21 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:21 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:21 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:21 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:21 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:21 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.822871 (min) 1.2163 (max)
10:55:21 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.894701 (min) 0.982744 (max)
10:55:21 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.00032791 (min) 0.000400913 (max)
10:55:21 DEBUG opendrift.models.basemodel:1524: x_wind: -4.53884 (min) 9.97014 (max)
10:55:21 DEBUG opendrift.models.basemodel:1524: y_wind: -3.48162 (min) 11.872 (max)
10:55:21 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:21 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:21 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:21 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:21 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:21 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:21 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:21 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 32.7616 (max)
10:55:21 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:21 DEBUG opendrift.models.basemodel:1527: 6180 active elements
10:55:21 DEBUG opendrift.models.basemodel:1538: 59.0987346310647 <- latitude -> 59.18945655992799
10:55:21 DEBUG opendrift.models.basemodel:1543: 10.830363900704343 <- longitude -> 11.041526857013022
10:55:21 DEBUG opendrift.models.basemodel:1548: -28.16849423483014 <- z -> 0.0
10:55:21 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:21 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:21 DEBUG opendrift.models.physics_methods:940: min: 0.146441, mean: 4.264514, max: 10.371466
10:55:21 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.146441, mean: 4.264514, max: 10.371466
10:55:21 DEBUG opendrift.models.basemodel:813: 1047 elements hit coastline, moving back to water
10:55:21 DEBUG opendrift.models.basemodel:836: Lifting 15 elements to seafloor.
10:55:21 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:21 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:21 DEBUG opendrift.models.physics_methods:741: Advecting 52 of 6180 elements above 0.100m with wind-sheared ocean current (0.000153 m/s - 0.179987 m/s)
10:55:21 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:21 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:21 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.1331054889102745
10:55:21 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:21 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:21 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:21 DEBUG opendrift.models.oceandrift:572: 769 elements penetrated seafloor, lifting up
10:55:21 DEBUG opendrift.models.oceandrift:590: 75 elements reached seafloor, set to bottom
10:55:21 DEBUG opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
10:55:21 DEBUG opendrift.models.sedimentdrift:112: Settling 75 elements at seafloor
10:55:21 DEBUG opendrift.models.oceandrift:572: 606 elements penetrated seafloor, lifting up
10:55:21 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:55:21 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:55:21 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:55:21 DEBUG opendrift.models.oceandrift:572: 639 elements penetrated seafloor, lifting up
10:55:21 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:55:21 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:55:21 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:55:21 DEBUG opendrift.models.oceandrift:572: 612 elements penetrated seafloor, lifting up
10:55:21 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:55:21 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:55:21 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:55:21 DEBUG opendrift.models.oceandrift:572: 572 elements penetrated seafloor, lifting up
10:55:21 DEBUG opendrift.models.oceandrift:590: 69 elements reached seafloor, set to bottom
10:55:21 DEBUG opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
10:55:21 DEBUG opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
10:55:21 DEBUG opendrift.models.oceandrift:572: 529 elements penetrated seafloor, lifting up
10:55:21 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:55:21 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:55:21 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:55:21 DEBUG opendrift.models.oceandrift:572: 529 elements penetrated seafloor, lifting up
10:55:21 DEBUG opendrift.models.oceandrift:590: 65 elements reached seafloor, set to bottom
10:55:21 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
10:55:21 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
10:55:21 DEBUG opendrift.models.oceandrift:572: 527 elements penetrated seafloor, lifting up
10:55:21 DEBUG opendrift.models.oceandrift:590: 44 elements reached seafloor, set to bottom
10:55:21 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
10:55:21 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
10:55:21 DEBUG opendrift.models.oceandrift:572: 499 elements penetrated seafloor, lifting up
10:55:21 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:55:21 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:55:21 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:55:21 DEBUG opendrift.models.oceandrift:572: 506 elements penetrated seafloor, lifting up
10:55:21 DEBUG opendrift.models.oceandrift:590: 44 elements reached seafloor, set to bottom
10:55:21 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
10:55:21 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
10:55:21 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:21 DEBUG opendrift.models.basemodel:2945: 6180 active elements (0 deactivated)
10:55:21 DEBUG opendrift.models.basemodel:1658: to be seeded: 3820, already seeded 6180
10:55:21 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:21 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:21 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:21 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:21 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:21 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:21 DEBUG opendrift.models.basemodel:1253: Data needed for 6215 elements
10:55:21 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:21 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 16:00:00 (before)
2023-08-22 17:00:00 (after)
10:55:21 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 16:00:00) in space (linearNDFast)
10:55:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:21 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:21 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:21 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:21 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:21 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:21 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 32.8915 (max)
10:55:21 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:21 DEBUG opendrift.models.basemodel:1527: 6215 active elements
10:55:21 DEBUG opendrift.models.basemodel:1538: 59.09875404980142 <- latitude -> 59.18971378892295
10:55:21 DEBUG opendrift.models.basemodel:1543: 10.83293475300107 <- longitude -> 11.04082275043768
10:55:21 DEBUG opendrift.models.basemodel:1548: -29.126622709222797 <- z -> 0.0
10:55:21 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:21 DEBUG opendrift.models.basemodel:836: Lifting 414 elements to seafloor.
10:55:21 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:21 INFO opendrift.models.basemodel:2882: 2023-08-22 16:32:19.552469 - step 179 of 216 - 6215 active elements (0 deactivated)
10:55:21 DEBUG opendrift.models.basemodel:2888: 3785 elements scheduled.
10:55:21 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:21 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:21 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:21 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:21 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:21 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:21 DEBUG opendrift.models.basemodel:1253: Data needed for 6215 elements
10:55:21 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:21 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:21 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:21 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:21 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:21 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:21 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:21 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:21 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:21 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:21 DEBUG opendrift.models.basemodel:1253: Data needed for 6215 elements
10:55:21 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:21 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 16:00:00 (before)
2023-08-22 17:00:00 (after)
10:55:21 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:21 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:21 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:21 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:21 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:21 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:21 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x30x7) for time after (2023-08-22 17:00:00)
10:55:21 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 16:00:00) in space (linearNDFast)
10:55:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:21 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 17:00:00) in space (linearNDFast)
10:55:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4047 elements, expanding data 1
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 210 elements, expanding data 2
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4047 elements, expanding data 1
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 210 elements, expanding data 2
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4248 elements, expanding data 1
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 829 elements, expanding data 2
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 201 elements, expanding data 3
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 4
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4248 elements, expanding data 1
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 829 elements, expanding data 2
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 201 elements, expanding data 3
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 4
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4248 elements, expanding data 1
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 829 elements, expanding data 2
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 201 elements, expanding data 3
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 4
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4248 elements, expanding data 1
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 829 elements, expanding data 2
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 201 elements, expanding data 3
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 4
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4248 elements, expanding data 1
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 829 elements, expanding data 2
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 201 elements, expanding data 3
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 4
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4248 elements, expanding data 1
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 829 elements, expanding data 2
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 201 elements, expanding data 3
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 4
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4248 elements, expanding data 1
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 829 elements, expanding data 2
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 201 elements, expanding data 3
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 4
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5280 elements, expanding data 1
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2013 elements, expanding data 2
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5280 elements, expanding data 1
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2013 elements, expanding data 2
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5280 elements, expanding data 1
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2013 elements, expanding data 2
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5280 elements, expanding data 1
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2013 elements, expanding data 2
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5280 elements, expanding data 1
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2013 elements, expanding data 2
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5280 elements, expanding data 1
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2013 elements, expanding data 2
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5280 elements, expanding data 1
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2013 elements, expanding data 2
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4047 elements, expanding data 1
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 210 elements, expanding data 2
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4047 elements, expanding data 1
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 210 elements, expanding data 2
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4047 elements, expanding data 1
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 210 elements, expanding data 2
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4047 elements, expanding data 1
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 210 elements, expanding data 2
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4047 elements, expanding data 1
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 210 elements, expanding data 2
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4047 elements, expanding data 1
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 210 elements, expanding data 2
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4047 elements, expanding data 1
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 210 elements, expanding data 2
10:55:21 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 3
10:55:21 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 16:00:00, weight 0.46) and
after (2023-08-22 17:00:00, weight 0.54) in time
10:55:21 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.16707582224306 and -58.95918780019045 degrees.
10:55:21 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.16707582224306 and -58.95918780019045 degrees.
10:55:21 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:21 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:21 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:21 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:21 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:21 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:21 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.838346 (min) 1.02825 (max)
10:55:21 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.01899 (min) 0.89899 (max)
10:55:21 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000442523 (min) 0.000391185 (max)
10:55:21 DEBUG opendrift.models.basemodel:1524: x_wind: -4.47205 (min) 9.91931 (max)
10:55:21 DEBUG opendrift.models.basemodel:1524: y_wind: -3.77704 (min) 11.3442 (max)
10:55:21 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:21 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:21 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:21 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:21 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:21 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:21 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:21 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 32.8915 (max)
10:55:21 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:21 DEBUG opendrift.models.basemodel:1527: 6215 active elements
10:55:21 DEBUG opendrift.models.basemodel:1538: 59.09875404980142 <- latitude -> 59.18971378892295
10:55:21 DEBUG opendrift.models.basemodel:1543: 10.83293475300107 <- longitude -> 11.04082275043768
10:55:21 DEBUG opendrift.models.basemodel:1548: -29.126622709222797 <- z -> 0.0
10:55:21 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:21 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:21 DEBUG opendrift.models.physics_methods:940: min: 0.083119, mean: 4.260411, max: 10.379642
10:55:21 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.083119, mean: 4.260411, max: 10.379642
10:55:21 DEBUG opendrift.models.basemodel:813: 1043 elements hit coastline, moving back to water
10:55:21 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:55:21 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:21 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:21 DEBUG opendrift.models.physics_methods:741: Advecting 44 of 6215 elements above 0.100m with wind-sheared ocean current (0.003826 m/s - 0.218622 m/s)
10:55:21 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:21 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:21 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.1333154201184082
10:55:21 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:21 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:21 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:21 DEBUG opendrift.models.oceandrift:572: 793 elements penetrated seafloor, lifting up
10:55:21 DEBUG opendrift.models.oceandrift:590: 62 elements reached seafloor, set to bottom
10:55:21 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
10:55:21 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
10:55:21 DEBUG opendrift.models.oceandrift:572: 685 elements penetrated seafloor, lifting up
10:55:21 DEBUG opendrift.models.oceandrift:590: 67 elements reached seafloor, set to bottom
10:55:21 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
10:55:21 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
10:55:21 DEBUG opendrift.models.oceandrift:572: 595 elements penetrated seafloor, lifting up
10:55:21 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:55:21 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:55:21 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:55:21 DEBUG opendrift.models.oceandrift:572: 548 elements penetrated seafloor, lifting up
10:55:21 DEBUG opendrift.models.oceandrift:590: 81 elements reached seafloor, set to bottom
10:55:21 DEBUG opendrift.models.basemodel:836: Lifting 81 elements to seafloor.
10:55:21 DEBUG opendrift.models.sedimentdrift:112: Settling 81 elements at seafloor
10:55:21 DEBUG opendrift.models.oceandrift:572: 547 elements penetrated seafloor, lifting up
10:55:21 DEBUG opendrift.models.oceandrift:590: 77 elements reached seafloor, set to bottom
10:55:21 DEBUG opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
10:55:21 DEBUG opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
10:55:21 DEBUG opendrift.models.oceandrift:572: 530 elements penetrated seafloor, lifting up
10:55:21 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:55:21 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:55:21 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:55:21 DEBUG opendrift.models.oceandrift:572: 496 elements penetrated seafloor, lifting up
10:55:21 DEBUG opendrift.models.oceandrift:590: 44 elements reached seafloor, set to bottom
10:55:21 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
10:55:21 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
10:55:21 DEBUG opendrift.models.oceandrift:572: 521 elements penetrated seafloor, lifting up
10:55:21 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:55:21 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:55:21 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:55:21 DEBUG opendrift.models.oceandrift:572: 500 elements penetrated seafloor, lifting up
10:55:21 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:55:21 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:55:21 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:55:21 DEBUG opendrift.models.oceandrift:572: 506 elements penetrated seafloor, lifting up
10:55:21 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:55:21 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:55:21 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:55:21 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:21 DEBUG opendrift.models.basemodel:2945: 6215 active elements (0 deactivated)
10:55:21 DEBUG opendrift.models.basemodel:1658: to be seeded: 3785, already seeded 6215
10:55:21 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:21 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:21 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:21 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:21 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:21 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:21 DEBUG opendrift.models.basemodel:1253: Data needed for 6250 elements
10:55:21 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:21 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 16:00:00 (before)
2023-08-22 17:00:00 (after)
10:55:21 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 16:00:00) in space (linearNDFast)
10:55:21 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:22 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:22 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:22 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:22 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:22 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:22 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 30.5654 (max)
10:55:22 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:22 DEBUG opendrift.models.basemodel:1527: 6250 active elements
10:55:22 DEBUG opendrift.models.basemodel:1538: 59.09745900009743 <- latitude -> 59.18964341478521
10:55:22 DEBUG opendrift.models.basemodel:1543: 10.829517350471953 <- longitude -> 11.045402117335335
10:55:22 DEBUG opendrift.models.basemodel:1548: -26.590754723326494 <- z -> 0.0
10:55:22 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:22 DEBUG opendrift.models.basemodel:836: Lifting 419 elements to seafloor.
10:55:22 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:22 INFO opendrift.models.basemodel:2882: 2023-08-22 16:42:19.552469 - step 180 of 216 - 6250 active elements (0 deactivated)
10:55:22 DEBUG opendrift.models.basemodel:2888: 3750 elements scheduled.
10:55:22 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:22 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:22 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:22 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:22 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:22 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:22 DEBUG opendrift.models.basemodel:1253: Data needed for 6250 elements
10:55:22 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:22 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:22 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:22 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:22 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:22 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:22 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:22 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:22 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:22 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:22 DEBUG opendrift.models.basemodel:1253: Data needed for 6250 elements
10:55:22 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:22 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 16:00:00 (before)
2023-08-22 17:00:00 (after)
10:55:23 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:23 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:23 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:23 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:23 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:23 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:23 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x30x7) for time after (2023-08-22 17:00:00)
10:55:23 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 16:00:00) in space (linearNDFast)
10:55:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:23 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 17:00:00) in space (linearNDFast)
10:55:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4093 elements, expanding data 1
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 215 elements, expanding data 2
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4093 elements, expanding data 1
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 215 elements, expanding data 2
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4296 elements, expanding data 1
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 858 elements, expanding data 2
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 204 elements, expanding data 3
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4296 elements, expanding data 1
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 858 elements, expanding data 2
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 204 elements, expanding data 3
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4296 elements, expanding data 1
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 858 elements, expanding data 2
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 204 elements, expanding data 3
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4296 elements, expanding data 1
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 858 elements, expanding data 2
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 204 elements, expanding data 3
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4296 elements, expanding data 1
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 858 elements, expanding data 2
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 204 elements, expanding data 3
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4296 elements, expanding data 1
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 858 elements, expanding data 2
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 204 elements, expanding data 3
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4296 elements, expanding data 1
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 858 elements, expanding data 2
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 204 elements, expanding data 3
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5316 elements, expanding data 1
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2026 elements, expanding data 2
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5316 elements, expanding data 1
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2026 elements, expanding data 2
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5316 elements, expanding data 1
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2026 elements, expanding data 2
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5316 elements, expanding data 1
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2026 elements, expanding data 2
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5316 elements, expanding data 1
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2026 elements, expanding data 2
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5316 elements, expanding data 1
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2026 elements, expanding data 2
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5316 elements, expanding data 1
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2026 elements, expanding data 2
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4093 elements, expanding data 1
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 215 elements, expanding data 2
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4093 elements, expanding data 1
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 215 elements, expanding data 2
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4093 elements, expanding data 1
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 215 elements, expanding data 2
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4093 elements, expanding data 1
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 215 elements, expanding data 2
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4093 elements, expanding data 1
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 215 elements, expanding data 2
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4093 elements, expanding data 1
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 215 elements, expanding data 2
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4093 elements, expanding data 1
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 215 elements, expanding data 2
10:55:23 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:23 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 16:00:00, weight 0.29) and
after (2023-08-22 17:00:00, weight 0.71) in time
10:55:23 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.170493209313065 and -58.95460843169293 degrees.
10:55:23 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.170493209313065 and -58.95460843169293 degrees.
10:55:23 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:23 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:23 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:23 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:23 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:23 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:23 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.825685 (min) 0.961973 (max)
10:55:23 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.824386 (min) 0.798258 (max)
10:55:23 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000440834 (min) 0.000402361 (max)
10:55:23 DEBUG opendrift.models.basemodel:1524: x_wind: -5.52832 (min) 10.2567 (max)
10:55:23 DEBUG opendrift.models.basemodel:1524: y_wind: -3.60374 (min) 11.1124 (max)
10:55:23 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:23 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:23 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:23 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:23 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:23 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:23 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:23 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 30.5654 (max)
10:55:23 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:23 DEBUG opendrift.models.basemodel:1527: 6250 active elements
10:55:23 DEBUG opendrift.models.basemodel:1538: 59.09745900009743 <- latitude -> 59.18964341478521
10:55:23 DEBUG opendrift.models.basemodel:1543: 10.829517350471953 <- longitude -> 11.045402117335335
10:55:23 DEBUG opendrift.models.basemodel:1548: -26.590754723326494 <- z -> 0.0
10:55:23 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:23 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:23 DEBUG opendrift.models.physics_methods:940: min: 0.062214, mean: 4.135215, max: 10.310334
10:55:23 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.062214, mean: 4.135215, max: 10.310334
10:55:23 DEBUG opendrift.models.basemodel:813: 1063 elements hit coastline, moving back to water
10:55:23 DEBUG opendrift.models.basemodel:836: Lifting 158 elements to seafloor.
10:55:23 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:23 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:23 DEBUG opendrift.models.physics_methods:741: Advecting 43 of 6250 elements above 0.100m with wind-sheared ocean current (0.008949 m/s - 0.213608 m/s)
10:55:23 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:23 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:23 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.13154104634244917
10:55:23 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:23 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:23 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:23 DEBUG opendrift.models.oceandrift:572: 758 elements penetrated seafloor, lifting up
10:55:23 DEBUG opendrift.models.oceandrift:590: 73 elements reached seafloor, set to bottom
10:55:23 DEBUG opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
10:55:23 DEBUG opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
10:55:23 DEBUG opendrift.models.oceandrift:572: 601 elements penetrated seafloor, lifting up
10:55:23 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:55:23 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:55:23 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:55:23 DEBUG opendrift.models.oceandrift:572: 606 elements penetrated seafloor, lifting up
10:55:23 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:55:23 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:55:23 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:55:23 DEBUG opendrift.models.oceandrift:572: 548 elements penetrated seafloor, lifting up
10:55:23 DEBUG opendrift.models.oceandrift:590: 54 elements reached seafloor, set to bottom
10:55:23 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
10:55:23 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
10:55:23 DEBUG opendrift.models.oceandrift:572: 567 elements penetrated seafloor, lifting up
10:55:23 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:55:23 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:55:23 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:55:23 DEBUG opendrift.models.oceandrift:572: 497 elements penetrated seafloor, lifting up
10:55:23 DEBUG opendrift.models.oceandrift:590: 66 elements reached seafloor, set to bottom
10:55:23 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
10:55:23 DEBUG opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
10:55:23 DEBUG opendrift.models.oceandrift:572: 531 elements penetrated seafloor, lifting up
10:55:23 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:55:23 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:55:23 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:55:23 DEBUG opendrift.models.oceandrift:572: 489 elements penetrated seafloor, lifting up
10:55:23 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:55:23 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:55:23 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:55:23 DEBUG opendrift.models.oceandrift:572: 517 elements penetrated seafloor, lifting up
10:55:23 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:55:23 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:55:23 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:55:23 DEBUG opendrift.models.oceandrift:572: 468 elements penetrated seafloor, lifting up
10:55:23 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:55:23 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:55:23 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:55:23 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:23 DEBUG opendrift.models.basemodel:2945: 6250 active elements (0 deactivated)
10:55:23 DEBUG opendrift.models.basemodel:1658: to be seeded: 3750, already seeded 6250
10:55:23 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:23 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:23 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:23 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:23 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:23 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:23 DEBUG opendrift.models.basemodel:1253: Data needed for 6285 elements
10:55:23 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:23 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 16:00:00 (before)
2023-08-22 17:00:00 (after)
10:55:23 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 16:00:00) in space (linearNDFast)
10:55:23 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:23 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:23 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:23 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:23 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:23 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:23 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 31.708 (max)
10:55:23 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:23 DEBUG opendrift.models.basemodel:1527: 6285 active elements
10:55:23 DEBUG opendrift.models.basemodel:1538: 59.099828328792 <- latitude -> 59.189682908704555
10:55:23 DEBUG opendrift.models.basemodel:1543: 10.832179222189339 <- longitude -> 11.047157283657683
10:55:23 DEBUG opendrift.models.basemodel:1548: -28.532934663162326 <- z -> 0.0
10:55:23 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:23 DEBUG opendrift.models.basemodel:836: Lifting 392 elements to seafloor.
10:55:23 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:23 INFO opendrift.models.basemodel:2882: 2023-08-22 16:52:19.552469 - step 181 of 216 - 6285 active elements (0 deactivated)
10:55:23 DEBUG opendrift.models.basemodel:2888: 3715 elements scheduled.
10:55:23 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:23 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:23 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:23 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:23 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:23 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:23 DEBUG opendrift.models.basemodel:1253: Data needed for 6285 elements
10:55:23 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:23 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:23 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:23 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:23 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:23 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:23 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:23 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:23 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:23 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:23 DEBUG opendrift.models.basemodel:1253: Data needed for 6285 elements
10:55:23 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:23 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 16:00:00 (before)
2023-08-22 17:00:00 (after)
10:55:24 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:24 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:24 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:24 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:24 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:24 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:24 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x30x7) for time after (2023-08-22 17:00:00)
10:55:24 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 16:00:00) in space (linearNDFast)
10:55:24 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:24 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 17:00:00) in space (linearNDFast)
10:55:24 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4138 elements, expanding data 1
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4138 elements, expanding data 1
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4338 elements, expanding data 1
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 862 elements, expanding data 2
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 203 elements, expanding data 3
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4338 elements, expanding data 1
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 862 elements, expanding data 2
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 203 elements, expanding data 3
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4338 elements, expanding data 1
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 862 elements, expanding data 2
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 203 elements, expanding data 3
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4338 elements, expanding data 1
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 862 elements, expanding data 2
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 203 elements, expanding data 3
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4338 elements, expanding data 1
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 862 elements, expanding data 2
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 203 elements, expanding data 3
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4338 elements, expanding data 1
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 862 elements, expanding data 2
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 203 elements, expanding data 3
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4338 elements, expanding data 1
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 862 elements, expanding data 2
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 203 elements, expanding data 3
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5344 elements, expanding data 1
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2039 elements, expanding data 2
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5344 elements, expanding data 1
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2039 elements, expanding data 2
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5344 elements, expanding data 1
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2039 elements, expanding data 2
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5344 elements, expanding data 1
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2039 elements, expanding data 2
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5344 elements, expanding data 1
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2039 elements, expanding data 2
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5344 elements, expanding data 1
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2039 elements, expanding data 2
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5344 elements, expanding data 1
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2039 elements, expanding data 2
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4138 elements, expanding data 1
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4138 elements, expanding data 1
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4138 elements, expanding data 1
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4138 elements, expanding data 1
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4138 elements, expanding data 1
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4138 elements, expanding data 1
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4138 elements, expanding data 1
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 211 elements, expanding data 2
10:55:24 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:24 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 16:00:00, weight 0.13) and
after (2023-08-22 17:00:00, weight 0.87) in time
10:55:24 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.167831341433185 and -58.95285326816843 degrees.
10:55:24 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.167831341433185 and -58.95285326816843 degrees.
10:55:24 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:24 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:24 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:24 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:24 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:24 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:24 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.866124 (min) 0.940625 (max)
10:55:24 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.928555 (min) 0.837146 (max)
10:55:24 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000348018 (min) 0.000446567 (max)
10:55:24 DEBUG opendrift.models.basemodel:1524: x_wind: -7.15164 (min) 9.54917 (max)
10:55:24 DEBUG opendrift.models.basemodel:1524: y_wind: -3.77119 (min) 11.0127 (max)
10:55:24 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:24 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:24 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:24 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:24 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:24 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:24 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:24 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 31.708 (max)
10:55:24 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:24 DEBUG opendrift.models.basemodel:1527: 6285 active elements
10:55:24 DEBUG opendrift.models.basemodel:1538: 59.099828328792 <- latitude -> 59.189682908704555
10:55:24 DEBUG opendrift.models.basemodel:1543: 10.832179222189339 <- longitude -> 11.047157283657683
10:55:24 DEBUG opendrift.models.basemodel:1548: -28.532934663162326 <- z -> 0.0
10:55:24 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:24 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:24 DEBUG opendrift.models.physics_methods:940: min: 0.060239, mean: 4.075841, max: 10.752427
10:55:24 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.060239, mean: 4.075841, max: 10.752427
10:55:24 DEBUG opendrift.models.basemodel:813: 1097 elements hit coastline, moving back to water
10:55:24 DEBUG opendrift.models.basemodel:836: Lifting 11 elements to seafloor.
10:55:24 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:24 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:24 DEBUG opendrift.models.physics_methods:741: Advecting 55 of 6285 elements above 0.100m with wind-sheared ocean current (0.000414 m/s - 0.218339 m/s)
10:55:24 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:24 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:24 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.1430631367231178
10:55:24 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:24 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:24 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:24 DEBUG opendrift.models.oceandrift:572: 797 elements penetrated seafloor, lifting up
10:55:24 DEBUG opendrift.models.oceandrift:590: 76 elements reached seafloor, set to bottom
10:55:24 DEBUG opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
10:55:24 DEBUG opendrift.models.sedimentdrift:112: Settling 76 elements at seafloor
10:55:24 DEBUG opendrift.models.oceandrift:572: 599 elements penetrated seafloor, lifting up
10:55:24 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:55:24 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:55:24 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:55:24 DEBUG opendrift.models.oceandrift:572: 589 elements penetrated seafloor, lifting up
10:55:24 DEBUG opendrift.models.oceandrift:590: 63 elements reached seafloor, set to bottom
10:55:24 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
10:55:24 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
10:55:24 DEBUG opendrift.models.oceandrift:572: 574 elements penetrated seafloor, lifting up
10:55:24 DEBUG opendrift.models.oceandrift:590: 67 elements reached seafloor, set to bottom
10:55:24 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
10:55:24 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
10:55:24 DEBUG opendrift.models.oceandrift:572: 538 elements penetrated seafloor, lifting up
10:55:24 DEBUG opendrift.models.oceandrift:590: 60 elements reached seafloor, set to bottom
10:55:24 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
10:55:24 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
10:55:24 DEBUG opendrift.models.oceandrift:572: 563 elements penetrated seafloor, lifting up
10:55:24 DEBUG opendrift.models.oceandrift:590: 64 elements reached seafloor, set to bottom
10:55:24 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
10:55:24 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
10:55:24 DEBUG opendrift.models.oceandrift:572: 543 elements penetrated seafloor, lifting up
10:55:24 DEBUG opendrift.models.oceandrift:590: 54 elements reached seafloor, set to bottom
10:55:24 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
10:55:24 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
10:55:24 DEBUG opendrift.models.oceandrift:572: 517 elements penetrated seafloor, lifting up
10:55:24 DEBUG opendrift.models.oceandrift:590: 45 elements reached seafloor, set to bottom
10:55:24 DEBUG opendrift.models.basemodel:836: Lifting 45 elements to seafloor.
10:55:24 DEBUG opendrift.models.sedimentdrift:112: Settling 45 elements at seafloor
10:55:24 DEBUG opendrift.models.oceandrift:572: 490 elements penetrated seafloor, lifting up
10:55:24 DEBUG opendrift.models.oceandrift:590: 68 elements reached seafloor, set to bottom
10:55:24 DEBUG opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
10:55:24 DEBUG opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
10:55:24 DEBUG opendrift.models.oceandrift:572: 462 elements penetrated seafloor, lifting up
10:55:24 DEBUG opendrift.models.oceandrift:590: 42 elements reached seafloor, set to bottom
10:55:24 DEBUG opendrift.models.basemodel:836: Lifting 42 elements to seafloor.
10:55:24 DEBUG opendrift.models.sedimentdrift:112: Settling 42 elements at seafloor
10:55:24 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:24 DEBUG opendrift.models.basemodel:2945: 6285 active elements (0 deactivated)
10:55:24 DEBUG opendrift.models.basemodel:1658: to be seeded: 3715, already seeded 6285
10:55:24 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:55:24 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:24 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:24 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:24 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:24 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:24 DEBUG opendrift.models.basemodel:1253: Data needed for 6319 elements
10:55:24 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:24 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 17:00:00 (before)
2023-08-22 18:00:00 (after)
10:55:24 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 17:00:00) in space (linearNDFast)
10:55:24 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:24 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:24 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:24 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:24 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:24 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:24 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 33.0248 (max)
10:55:24 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:24 DEBUG opendrift.models.basemodel:1527: 6319 active elements
10:55:24 DEBUG opendrift.models.basemodel:1538: 59.10033935305299 <- latitude -> 59.18997339387449
10:55:24 DEBUG opendrift.models.basemodel:1543: 10.825623127181514 <- longitude -> 11.043402337118119
10:55:24 DEBUG opendrift.models.basemodel:1548: -29.6403063611028 <- z -> 0.0
10:55:24 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:24 DEBUG opendrift.models.basemodel:836: Lifting 425 elements to seafloor.
10:55:24 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:24 INFO opendrift.models.basemodel:2882: 2023-08-22 17:02:19.552469 - step 182 of 216 - 6319 active elements (0 deactivated)
10:55:24 DEBUG opendrift.models.basemodel:2888: 3681 elements scheduled.
10:55:24 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:24 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:24 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:24 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:24 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:24 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:24 DEBUG opendrift.models.basemodel:1253: Data needed for 6319 elements
10:55:24 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:24 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:24 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:24 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:24 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:24 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:24 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:24 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:24 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:24 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:24 DEBUG opendrift.models.basemodel:1253: Data needed for 6319 elements
10:55:24 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:24 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 17:00:00 (before)
2023-08-22 18:00:00 (after)
10:55:25 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:25 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:25 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:25 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:25 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:25 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:25 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x30x7) for time after (2023-08-22 18:00:00)
10:55:25 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 17:00:00) in space (linearNDFast)
10:55:25 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:25 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 18:00:00) in space (linearNDFast)
10:55:25 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4150 elements, expanding data 1
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 217 elements, expanding data 2
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4150 elements, expanding data 1
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 217 elements, expanding data 2
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4346 elements, expanding data 1
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 858 elements, expanding data 2
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 209 elements, expanding data 3
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4346 elements, expanding data 1
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 858 elements, expanding data 2
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 209 elements, expanding data 3
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4346 elements, expanding data 1
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 858 elements, expanding data 2
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 209 elements, expanding data 3
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4346 elements, expanding data 1
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 858 elements, expanding data 2
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 209 elements, expanding data 3
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4346 elements, expanding data 1
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 858 elements, expanding data 2
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 209 elements, expanding data 3
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4346 elements, expanding data 1
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 858 elements, expanding data 2
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 209 elements, expanding data 3
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4346 elements, expanding data 1
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 858 elements, expanding data 2
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 209 elements, expanding data 3
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5358 elements, expanding data 1
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2030 elements, expanding data 2
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5358 elements, expanding data 1
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2030 elements, expanding data 2
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5358 elements, expanding data 1
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2030 elements, expanding data 2
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5358 elements, expanding data 1
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2030 elements, expanding data 2
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5358 elements, expanding data 1
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2030 elements, expanding data 2
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5358 elements, expanding data 1
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2030 elements, expanding data 2
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5358 elements, expanding data 1
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2030 elements, expanding data 2
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4150 elements, expanding data 1
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 217 elements, expanding data 2
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4150 elements, expanding data 1
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 217 elements, expanding data 2
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4150 elements, expanding data 1
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 217 elements, expanding data 2
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4150 elements, expanding data 1
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 217 elements, expanding data 2
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4150 elements, expanding data 1
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 217 elements, expanding data 2
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4150 elements, expanding data 1
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 217 elements, expanding data 2
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4150 elements, expanding data 1
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 217 elements, expanding data 2
10:55:25 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:25 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 17:00:00, weight 0.96) and
after (2023-08-22 18:00:00, weight 0.04) in time
10:55:25 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.174387443437645 and -58.9566082126088 degrees.
10:55:26 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.174387443437645 and -58.9566082126088 degrees.
10:55:26 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:26 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:26 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:26 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:26 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:26 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:26 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.807986 (min) 0.92965 (max)
10:55:26 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.947577 (min) 0.910846 (max)
10:55:26 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000432769 (min) 0.000412932 (max)
10:55:26 DEBUG opendrift.models.basemodel:1524: x_wind: -6.34561 (min) 8.58758 (max)
10:55:26 DEBUG opendrift.models.basemodel:1524: y_wind: -3.39443 (min) 10.4836 (max)
10:55:26 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:26 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:26 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:26 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:26 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:26 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:26 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:26 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 33.0248 (max)
10:55:26 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:26 DEBUG opendrift.models.basemodel:1527: 6319 active elements
10:55:26 DEBUG opendrift.models.basemodel:1538: 59.10033935305299 <- latitude -> 59.18997339387449
10:55:26 DEBUG opendrift.models.basemodel:1543: 10.825623127181514 <- longitude -> 11.043402337118119
10:55:26 DEBUG opendrift.models.basemodel:1548: -29.6403063611028 <- z -> 0.0
10:55:26 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:26 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:26 DEBUG opendrift.models.physics_methods:940: min: 0.147772, mean: 4.056739, max: 9.963171
10:55:26 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.147772, mean: 4.056739, max: 9.963171
10:55:26 DEBUG opendrift.models.basemodel:813: 1136 elements hit coastline, moving back to water
10:55:26 DEBUG opendrift.models.basemodel:836: Lifting 108 elements to seafloor.
10:55:26 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:26 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:26 DEBUG opendrift.models.physics_methods:741: Advecting 45 of 6319 elements above 0.100m with wind-sheared ocean current (0.000395 m/s - 0.142379 m/s)
10:55:26 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:26 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:26 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.12283213655193329
10:55:26 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:26 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:26 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:26 DEBUG opendrift.models.oceandrift:572: 735 elements penetrated seafloor, lifting up
10:55:26 DEBUG opendrift.models.oceandrift:590: 72 elements reached seafloor, set to bottom
10:55:26 DEBUG opendrift.models.basemodel:836: Lifting 72 elements to seafloor.
10:55:26 DEBUG opendrift.models.sedimentdrift:112: Settling 72 elements at seafloor
10:55:26 DEBUG opendrift.models.oceandrift:572: 584 elements penetrated seafloor, lifting up
10:55:26 DEBUG opendrift.models.oceandrift:590: 80 elements reached seafloor, set to bottom
10:55:26 DEBUG opendrift.models.basemodel:836: Lifting 80 elements to seafloor.
10:55:26 DEBUG opendrift.models.sedimentdrift:112: Settling 80 elements at seafloor
10:55:26 DEBUG opendrift.models.oceandrift:572: 592 elements penetrated seafloor, lifting up
10:55:26 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:55:26 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:55:26 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:55:26 DEBUG opendrift.models.oceandrift:572: 528 elements penetrated seafloor, lifting up
10:55:26 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:55:26 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:55:26 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:55:26 DEBUG opendrift.models.oceandrift:572: 536 elements penetrated seafloor, lifting up
10:55:26 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:55:26 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:55:26 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:55:26 DEBUG opendrift.models.oceandrift:572: 496 elements penetrated seafloor, lifting up
10:55:26 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:55:26 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:55:26 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:55:26 DEBUG opendrift.models.oceandrift:572: 519 elements penetrated seafloor, lifting up
10:55:26 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:55:26 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:55:26 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:55:26 DEBUG opendrift.models.oceandrift:572: 523 elements penetrated seafloor, lifting up
10:55:26 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:55:26 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:55:26 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:55:26 DEBUG opendrift.models.oceandrift:572: 534 elements penetrated seafloor, lifting up
10:55:26 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:55:26 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:55:26 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:55:26 DEBUG opendrift.models.oceandrift:572: 536 elements penetrated seafloor, lifting up
10:55:26 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:55:26 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:55:26 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:55:26 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:26 DEBUG opendrift.models.basemodel:2945: 6319 active elements (0 deactivated)
10:55:26 DEBUG opendrift.models.basemodel:1658: to be seeded: 3681, already seeded 6319
10:55:26 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:26 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:26 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:26 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:26 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:26 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:26 DEBUG opendrift.models.basemodel:1253: Data needed for 6354 elements
10:55:26 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:26 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 17:00:00 (before)
2023-08-22 18:00:00 (after)
10:55:26 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 17:00:00) in space (linearNDFast)
10:55:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:26 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:26 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:26 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:26 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:26 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:26 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 35.2267 (max)
10:55:26 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:26 DEBUG opendrift.models.basemodel:1527: 6354 active elements
10:55:26 DEBUG opendrift.models.basemodel:1538: 59.09944853781198 <- latitude -> 59.19041653069411
10:55:26 DEBUG opendrift.models.basemodel:1543: 10.821047171095177 <- longitude -> 11.039741706518521
10:55:26 DEBUG opendrift.models.basemodel:1548: -30.824934067618155 <- z -> 0.0
10:55:26 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:26 DEBUG opendrift.models.basemodel:836: Lifting 410 elements to seafloor.
10:55:26 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:26 INFO opendrift.models.basemodel:2882: 2023-08-22 17:12:19.552469 - step 183 of 216 - 6354 active elements (0 deactivated)
10:55:26 DEBUG opendrift.models.basemodel:2888: 3646 elements scheduled.
10:55:26 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:26 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:26 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:26 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:26 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:26 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:26 DEBUG opendrift.models.basemodel:1253: Data needed for 6354 elements
10:55:26 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:26 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:26 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:26 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:26 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:26 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:26 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:26 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:26 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:26 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:26 DEBUG opendrift.models.basemodel:1253: Data needed for 6354 elements
10:55:26 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:26 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 17:00:00 (before)
2023-08-22 18:00:00 (after)
10:55:26 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:26 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:26 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:26 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:26 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:26 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:26 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x30x7) for time after (2023-08-22 18:00:00)
10:55:26 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 17:00:00) in space (linearNDFast)
10:55:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:26 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 18:00:00) in space (linearNDFast)
10:55:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4240 elements, expanding data 1
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 218 elements, expanding data 2
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4240 elements, expanding data 1
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 218 elements, expanding data 2
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4423 elements, expanding data 1
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 888 elements, expanding data 2
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 203 elements, expanding data 3
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4423 elements, expanding data 1
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 888 elements, expanding data 2
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 203 elements, expanding data 3
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4423 elements, expanding data 1
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 888 elements, expanding data 2
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 203 elements, expanding data 3
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4423 elements, expanding data 1
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 888 elements, expanding data 2
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 203 elements, expanding data 3
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4423 elements, expanding data 1
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 888 elements, expanding data 2
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 203 elements, expanding data 3
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4423 elements, expanding data 1
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 888 elements, expanding data 2
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 203 elements, expanding data 3
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4423 elements, expanding data 1
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 888 elements, expanding data 2
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 203 elements, expanding data 3
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5430 elements, expanding data 1
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2088 elements, expanding data 2
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5430 elements, expanding data 1
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2088 elements, expanding data 2
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5430 elements, expanding data 1
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2088 elements, expanding data 2
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5430 elements, expanding data 1
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2088 elements, expanding data 2
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5430 elements, expanding data 1
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2088 elements, expanding data 2
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5430 elements, expanding data 1
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2088 elements, expanding data 2
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5430 elements, expanding data 1
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2088 elements, expanding data 2
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4240 elements, expanding data 1
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 218 elements, expanding data 2
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4240 elements, expanding data 1
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 218 elements, expanding data 2
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4240 elements, expanding data 1
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 218 elements, expanding data 2
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4240 elements, expanding data 1
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 218 elements, expanding data 2
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4240 elements, expanding data 1
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 218 elements, expanding data 2
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4240 elements, expanding data 1
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 218 elements, expanding data 2
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4240 elements, expanding data 1
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 218 elements, expanding data 2
10:55:26 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:26 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 17:00:00, weight 0.79) and
after (2023-08-22 18:00:00, weight 0.21) in time
10:55:26 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.178963397979835 and -58.960268842691335 degrees.
10:55:26 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.178963397979835 and -58.960268842691335 degrees.
10:55:26 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:26 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:26 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:26 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:26 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:26 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:26 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.857172 (min) 1.00387 (max)
10:55:26 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.25282 (min) 0.834964 (max)
10:55:26 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000409095 (min) 0.000436986 (max)
10:55:26 DEBUG opendrift.models.basemodel:1524: x_wind: -6.26401 (min) 9.53163 (max)
10:55:26 DEBUG opendrift.models.basemodel:1524: y_wind: -3.06143 (min) 12.2582 (max)
10:55:26 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:26 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:26 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:26 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:26 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:26 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:26 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:26 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 35.2267 (max)
10:55:26 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:26 DEBUG opendrift.models.basemodel:1527: 6354 active elements
10:55:26 DEBUG opendrift.models.basemodel:1538: 59.09944853781198 <- latitude -> 59.19041653069411
10:55:26 DEBUG opendrift.models.basemodel:1543: 10.821047171095177 <- longitude -> 11.039741706518521
10:55:26 DEBUG opendrift.models.basemodel:1548: -30.824934067618155 <- z -> 0.0
10:55:26 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:26 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:26 DEBUG opendrift.models.physics_methods:940: min: 0.084986, mean: 4.044352, max: 10.539158
10:55:26 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.084986, mean: 4.044352, max: 10.539158
10:55:26 DEBUG opendrift.models.basemodel:813: 1115 elements hit coastline, moving back to water
10:55:26 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:55:26 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:26 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:26 DEBUG opendrift.models.physics_methods:741: Advecting 42 of 6354 elements above 0.100m with wind-sheared ocean current (0.009354 m/s - 0.163056 m/s)
10:55:26 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:26 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:26 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.13744442031915663
10:55:26 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:26 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:26 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:26 DEBUG opendrift.models.oceandrift:572: 771 elements penetrated seafloor, lifting up
10:55:26 DEBUG opendrift.models.oceandrift:590: 73 elements reached seafloor, set to bottom
10:55:26 DEBUG opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
10:55:26 DEBUG opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
10:55:26 DEBUG opendrift.models.oceandrift:572: 639 elements penetrated seafloor, lifting up
10:55:26 DEBUG opendrift.models.oceandrift:590: 92 elements reached seafloor, set to bottom
10:55:26 DEBUG opendrift.models.basemodel:836: Lifting 92 elements to seafloor.
10:55:26 DEBUG opendrift.models.sedimentdrift:112: Settling 92 elements at seafloor
10:55:26 DEBUG opendrift.models.oceandrift:572: 588 elements penetrated seafloor, lifting up
10:55:26 DEBUG opendrift.models.oceandrift:590: 73 elements reached seafloor, set to bottom
10:55:26 DEBUG opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
10:55:26 DEBUG opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
10:55:26 DEBUG opendrift.models.oceandrift:572: 603 elements penetrated seafloor, lifting up
10:55:26 DEBUG opendrift.models.oceandrift:590: 64 elements reached seafloor, set to bottom
10:55:26 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
10:55:26 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
10:55:26 DEBUG opendrift.models.oceandrift:572: 529 elements penetrated seafloor, lifting up
10:55:26 DEBUG opendrift.models.oceandrift:590: 70 elements reached seafloor, set to bottom
10:55:26 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
10:55:26 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
10:55:26 DEBUG opendrift.models.oceandrift:572: 554 elements penetrated seafloor, lifting up
10:55:26 DEBUG opendrift.models.oceandrift:590: 65 elements reached seafloor, set to bottom
10:55:26 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
10:55:26 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
10:55:26 DEBUG opendrift.models.oceandrift:572: 528 elements penetrated seafloor, lifting up
10:55:26 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:55:26 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:55:26 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:55:26 DEBUG opendrift.models.oceandrift:572: 476 elements penetrated seafloor, lifting up
10:55:26 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:55:26 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:55:26 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:55:26 DEBUG opendrift.models.oceandrift:572: 501 elements penetrated seafloor, lifting up
10:55:26 DEBUG opendrift.models.oceandrift:590: 64 elements reached seafloor, set to bottom
10:55:26 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
10:55:26 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
10:55:26 DEBUG opendrift.models.oceandrift:572: 483 elements penetrated seafloor, lifting up
10:55:26 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:55:26 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:55:26 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:55:26 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:26 DEBUG opendrift.models.basemodel:2945: 6354 active elements (0 deactivated)
10:55:26 DEBUG opendrift.models.basemodel:1658: to be seeded: 3646, already seeded 6354
10:55:26 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:26 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:26 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:26 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:26 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:26 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:26 DEBUG opendrift.models.basemodel:1253: Data needed for 6389 elements
10:55:26 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:26 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 17:00:00 (before)
2023-08-22 18:00:00 (after)
10:55:26 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 17:00:00) in space (linearNDFast)
10:55:26 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:26 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:26 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:26 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:26 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:26 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:26 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 36.4429 (max)
10:55:26 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:26 DEBUG opendrift.models.basemodel:1527: 6389 active elements
10:55:26 DEBUG opendrift.models.basemodel:1538: 59.099599852327 <- latitude -> 59.190304677487674
10:55:26 DEBUG opendrift.models.basemodel:1543: 10.81888527441749 <- longitude -> 11.042813719150779
10:55:26 DEBUG opendrift.models.basemodel:1548: -30.932492009160658 <- z -> 0.0
10:55:26 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:26 DEBUG opendrift.models.basemodel:836: Lifting 444 elements to seafloor.
10:55:26 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:26 INFO opendrift.models.basemodel:2882: 2023-08-22 17:22:19.552469 - step 184 of 216 - 6389 active elements (0 deactivated)
10:55:26 DEBUG opendrift.models.basemodel:2888: 3611 elements scheduled.
10:55:26 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:26 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:26 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:26 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:26 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:26 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:26 DEBUG opendrift.models.basemodel:1253: Data needed for 6389 elements
10:55:26 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:26 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:26 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:26 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:26 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:26 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:26 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:26 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:26 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:26 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:26 DEBUG opendrift.models.basemodel:1253: Data needed for 6389 elements
10:55:26 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:26 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 17:00:00 (before)
2023-08-22 18:00:00 (after)
10:55:27 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:27 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:27 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:27 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:27 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:27 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:27 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x30x7) for time after (2023-08-22 18:00:00)
10:55:27 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 17:00:00) in space (linearNDFast)
10:55:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:27 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 18:00:00) in space (linearNDFast)
10:55:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4260 elements, expanding data 1
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 216 elements, expanding data 2
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4260 elements, expanding data 1
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 216 elements, expanding data 2
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4426 elements, expanding data 1
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 874 elements, expanding data 2
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 207 elements, expanding data 3
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4426 elements, expanding data 1
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 874 elements, expanding data 2
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 207 elements, expanding data 3
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4426 elements, expanding data 1
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 874 elements, expanding data 2
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 207 elements, expanding data 3
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4426 elements, expanding data 1
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 874 elements, expanding data 2
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 207 elements, expanding data 3
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4426 elements, expanding data 1
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 874 elements, expanding data 2
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 207 elements, expanding data 3
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4426 elements, expanding data 1
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 874 elements, expanding data 2
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 207 elements, expanding data 3
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4426 elements, expanding data 1
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 874 elements, expanding data 2
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 207 elements, expanding data 3
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5451 elements, expanding data 1
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2109 elements, expanding data 2
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5451 elements, expanding data 1
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2109 elements, expanding data 2
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5451 elements, expanding data 1
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2109 elements, expanding data 2
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5451 elements, expanding data 1
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2109 elements, expanding data 2
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5451 elements, expanding data 1
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2109 elements, expanding data 2
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5451 elements, expanding data 1
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2109 elements, expanding data 2
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5451 elements, expanding data 1
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2109 elements, expanding data 2
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4260 elements, expanding data 1
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 216 elements, expanding data 2
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4260 elements, expanding data 1
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 216 elements, expanding data 2
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4260 elements, expanding data 1
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 216 elements, expanding data 2
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4260 elements, expanding data 1
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 216 elements, expanding data 2
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4260 elements, expanding data 1
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 216 elements, expanding data 2
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4260 elements, expanding data 1
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 216 elements, expanding data 2
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4260 elements, expanding data 1
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 216 elements, expanding data 2
10:55:27 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:27 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 17:00:00, weight 0.63) and
after (2023-08-22 18:00:00, weight 0.37) in time
10:55:27 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.18112530877741 and -58.95719684328117 degrees.
10:55:27 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.18112530877741 and -58.95719684328117 degrees.
10:55:27 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:27 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:27 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:27 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:27 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:27 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:27 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.823508 (min) 1.16452 (max)
10:55:27 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.947488 (min) 0.856919 (max)
10:55:27 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000389591 (min) 0.000442135 (max)
10:55:27 DEBUG opendrift.models.basemodel:1524: x_wind: -5.89707 (min) 11.015 (max)
10:55:27 DEBUG opendrift.models.basemodel:1524: y_wind: -3.07121 (min) 11.6915 (max)
10:55:27 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:27 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:27 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:27 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:27 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:27 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:27 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:27 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 36.4429 (max)
10:55:27 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:27 DEBUG opendrift.models.basemodel:1527: 6389 active elements
10:55:27 DEBUG opendrift.models.basemodel:1538: 59.099599852327 <- latitude -> 59.190304677487674
10:55:27 DEBUG opendrift.models.basemodel:1543: 10.81888527441749 <- longitude -> 11.042813719150779
10:55:27 DEBUG opendrift.models.basemodel:1548: -30.932492009160658 <- z -> 0.0
10:55:27 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:27 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:27 DEBUG opendrift.models.physics_methods:940: min: 0.076092, mean: 4.035839, max: 10.797259
10:55:27 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.076092, mean: 4.035839, max: 10.797259
10:55:27 DEBUG opendrift.models.basemodel:813: 1132 elements hit coastline, moving back to water
10:55:27 DEBUG opendrift.models.basemodel:836: Lifting 27 elements to seafloor.
10:55:27 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:27 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:27 DEBUG opendrift.models.physics_methods:741: Advecting 45 of 6389 elements above 0.100m with wind-sheared ocean current (0.000136 m/s - 0.178455 m/s)
10:55:27 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:27 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:27 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.1442586173139381
10:55:27 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:27 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:27 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:27 DEBUG opendrift.models.oceandrift:572: 792 elements penetrated seafloor, lifting up
10:55:27 DEBUG opendrift.models.oceandrift:590: 83 elements reached seafloor, set to bottom
10:55:27 DEBUG opendrift.models.basemodel:836: Lifting 83 elements to seafloor.
10:55:27 DEBUG opendrift.models.sedimentdrift:112: Settling 83 elements at seafloor
10:55:27 DEBUG opendrift.models.oceandrift:572: 633 elements penetrated seafloor, lifting up
10:55:27 DEBUG opendrift.models.oceandrift:590: 76 elements reached seafloor, set to bottom
10:55:27 DEBUG opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
10:55:27 DEBUG opendrift.models.sedimentdrift:112: Settling 76 elements at seafloor
10:55:27 DEBUG opendrift.models.oceandrift:572: 596 elements penetrated seafloor, lifting up
10:55:27 DEBUG opendrift.models.oceandrift:590: 44 elements reached seafloor, set to bottom
10:55:27 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
10:55:27 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
10:55:27 DEBUG opendrift.models.oceandrift:572: 581 elements penetrated seafloor, lifting up
10:55:27 DEBUG opendrift.models.oceandrift:590: 66 elements reached seafloor, set to bottom
10:55:27 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
10:55:27 DEBUG opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
10:55:27 DEBUG opendrift.models.oceandrift:572: 563 elements penetrated seafloor, lifting up
10:55:27 DEBUG opendrift.models.oceandrift:590: 64 elements reached seafloor, set to bottom
10:55:27 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
10:55:27 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
10:55:27 DEBUG opendrift.models.oceandrift:572: 542 elements penetrated seafloor, lifting up
10:55:27 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:55:27 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:55:27 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:55:27 DEBUG opendrift.models.oceandrift:572: 535 elements penetrated seafloor, lifting up
10:55:27 DEBUG opendrift.models.oceandrift:590: 71 elements reached seafloor, set to bottom
10:55:27 DEBUG opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
10:55:27 DEBUG opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
10:55:27 DEBUG opendrift.models.oceandrift:572: 546 elements penetrated seafloor, lifting up
10:55:27 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:55:27 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:55:27 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:55:27 DEBUG opendrift.models.oceandrift:572: 500 elements penetrated seafloor, lifting up
10:55:27 DEBUG opendrift.models.oceandrift:590: 49 elements reached seafloor, set to bottom
10:55:27 DEBUG opendrift.models.basemodel:836: Lifting 49 elements to seafloor.
10:55:27 DEBUG opendrift.models.sedimentdrift:112: Settling 49 elements at seafloor
10:55:27 DEBUG opendrift.models.oceandrift:572: 490 elements penetrated seafloor, lifting up
10:55:27 DEBUG opendrift.models.oceandrift:590: 64 elements reached seafloor, set to bottom
10:55:27 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
10:55:27 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
10:55:27 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:27 DEBUG opendrift.models.basemodel:2945: 6389 active elements (0 deactivated)
10:55:27 DEBUG opendrift.models.basemodel:1658: to be seeded: 3611, already seeded 6389
10:55:27 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:55:27 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:27 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:27 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:27 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:27 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:27 DEBUG opendrift.models.basemodel:1253: Data needed for 6423 elements
10:55:27 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:27 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 17:00:00 (before)
2023-08-22 18:00:00 (after)
10:55:27 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 17:00:00) in space (linearNDFast)
10:55:27 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:27 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:27 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:27 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:27 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:27 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:27 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 36.4417 (max)
10:55:27 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:27 DEBUG opendrift.models.basemodel:1527: 6423 active elements
10:55:27 DEBUG opendrift.models.basemodel:1538: 59.10076672538335 <- latitude -> 59.19036643508243
10:55:27 DEBUG opendrift.models.basemodel:1543: 10.818214678380759 <- longitude -> 11.043096204140738
10:55:27 DEBUG opendrift.models.basemodel:1548: -33.20657462136117 <- z -> 0.0
10:55:27 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:27 DEBUG opendrift.models.basemodel:836: Lifting 458 elements to seafloor.
10:55:27 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:27 INFO opendrift.models.basemodel:2882: 2023-08-22 17:32:19.552469 - step 185 of 216 - 6423 active elements (0 deactivated)
10:55:27 DEBUG opendrift.models.basemodel:2888: 3577 elements scheduled.
10:55:27 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:27 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:27 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:27 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:27 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:27 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:27 DEBUG opendrift.models.basemodel:1253: Data needed for 6423 elements
10:55:27 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:27 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:27 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:27 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:27 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:27 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:27 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:27 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:27 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:27 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:27 DEBUG opendrift.models.basemodel:1253: Data needed for 6423 elements
10:55:27 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:27 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 17:00:00 (before)
2023-08-22 18:00:00 (after)
10:55:28 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:28 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:28 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:28 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:28 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:28 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:28 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x30x7) for time after (2023-08-22 18:00:00)
10:55:28 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 17:00:00) in space (linearNDFast)
10:55:28 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:28 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 18:00:00) in space (linearNDFast)
10:55:28 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4316 elements, expanding data 1
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 224 elements, expanding data 2
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4316 elements, expanding data 1
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 224 elements, expanding data 2
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4502 elements, expanding data 1
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 880 elements, expanding data 2
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 215 elements, expanding data 3
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4502 elements, expanding data 1
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 880 elements, expanding data 2
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 215 elements, expanding data 3
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4502 elements, expanding data 1
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 880 elements, expanding data 2
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 215 elements, expanding data 3
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4502 elements, expanding data 1
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 880 elements, expanding data 2
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 215 elements, expanding data 3
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4502 elements, expanding data 1
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 880 elements, expanding data 2
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 215 elements, expanding data 3
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4502 elements, expanding data 1
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 880 elements, expanding data 2
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 215 elements, expanding data 3
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4502 elements, expanding data 1
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 880 elements, expanding data 2
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 215 elements, expanding data 3
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5492 elements, expanding data 1
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2162 elements, expanding data 2
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5492 elements, expanding data 1
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2162 elements, expanding data 2
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5492 elements, expanding data 1
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2162 elements, expanding data 2
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5492 elements, expanding data 1
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2162 elements, expanding data 2
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5492 elements, expanding data 1
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2162 elements, expanding data 2
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5492 elements, expanding data 1
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2162 elements, expanding data 2
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5492 elements, expanding data 1
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2162 elements, expanding data 2
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4316 elements, expanding data 1
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 224 elements, expanding data 2
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4316 elements, expanding data 1
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 224 elements, expanding data 2
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4316 elements, expanding data 1
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 224 elements, expanding data 2
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4316 elements, expanding data 1
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 224 elements, expanding data 2
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4316 elements, expanding data 1
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 224 elements, expanding data 2
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4316 elements, expanding data 1
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 224 elements, expanding data 2
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4316 elements, expanding data 1
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 224 elements, expanding data 2
10:55:28 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:28 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 17:00:00, weight 0.46) and
after (2023-08-22 18:00:00, weight 0.54) in time
10:55:28 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.18179589303976 and -58.95691433905846 degrees.
10:55:28 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.18179589303976 and -58.95691433905846 degrees.
10:55:28 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:28 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:28 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:28 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:28 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:28 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:28 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.717637 (min) 1.09598 (max)
10:55:28 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.13165 (min) 0.916048 (max)
10:55:28 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000291087 (min) 0.000476179 (max)
10:55:28 DEBUG opendrift.models.basemodel:1524: x_wind: -5.78842 (min) 9.07948 (max)
10:55:28 DEBUG opendrift.models.basemodel:1524: y_wind: -4.35896 (min) 11.8263 (max)
10:55:28 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:28 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:28 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:28 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:28 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:28 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:28 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:28 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 36.4417 (max)
10:55:28 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:28 DEBUG opendrift.models.basemodel:1527: 6423 active elements
10:55:28 DEBUG opendrift.models.basemodel:1538: 59.10076672538335 <- latitude -> 59.19036643508243
10:55:28 DEBUG opendrift.models.basemodel:1543: 10.818214678380759 <- longitude -> 11.043096204140738
10:55:28 DEBUG opendrift.models.basemodel:1548: -33.20657462136117 <- z -> 0.0
10:55:28 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:28 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:28 DEBUG opendrift.models.physics_methods:940: min: 0.047236, mean: 4.053254, max: 10.545125
10:55:28 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.047236, mean: 4.053254, max: 10.545125
10:55:28 DEBUG opendrift.models.basemodel:813: 1165 elements hit coastline, moving back to water
10:55:28 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:55:28 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:28 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:28 DEBUG opendrift.models.physics_methods:741: Advecting 53 of 6423 elements above 0.100m with wind-sheared ocean current (0.001706 m/s - 0.156914 m/s)
10:55:28 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:28 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:28 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.13760010539491652
10:55:28 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:28 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:28 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:28 DEBUG opendrift.models.oceandrift:572: 791 elements penetrated seafloor, lifting up
10:55:28 DEBUG opendrift.models.oceandrift:590: 73 elements reached seafloor, set to bottom
10:55:28 DEBUG opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
10:55:28 DEBUG opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
10:55:28 DEBUG opendrift.models.oceandrift:572: 699 elements penetrated seafloor, lifting up
10:55:28 DEBUG opendrift.models.oceandrift:590: 73 elements reached seafloor, set to bottom
10:55:28 DEBUG opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
10:55:28 DEBUG opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
10:55:28 DEBUG opendrift.models.oceandrift:572: 640 elements penetrated seafloor, lifting up
10:55:28 DEBUG opendrift.models.oceandrift:590: 75 elements reached seafloor, set to bottom
10:55:28 DEBUG opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
10:55:28 DEBUG opendrift.models.sedimentdrift:112: Settling 75 elements at seafloor
10:55:28 DEBUG opendrift.models.oceandrift:572: 581 elements penetrated seafloor, lifting up
10:55:28 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:55:28 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:55:28 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:55:28 DEBUG opendrift.models.oceandrift:572: 629 elements penetrated seafloor, lifting up
10:55:28 DEBUG opendrift.models.oceandrift:590: 69 elements reached seafloor, set to bottom
10:55:28 DEBUG opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
10:55:28 DEBUG opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
10:55:28 DEBUG opendrift.models.oceandrift:572: 582 elements penetrated seafloor, lifting up
10:55:28 DEBUG opendrift.models.oceandrift:590: 64 elements reached seafloor, set to bottom
10:55:28 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
10:55:28 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
10:55:28 DEBUG opendrift.models.oceandrift:572: 561 elements penetrated seafloor, lifting up
10:55:28 DEBUG opendrift.models.oceandrift:590: 64 elements reached seafloor, set to bottom
10:55:28 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
10:55:28 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
10:55:28 DEBUG opendrift.models.oceandrift:572: 529 elements penetrated seafloor, lifting up
10:55:28 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:55:28 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:55:28 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:55:28 DEBUG opendrift.models.oceandrift:572: 519 elements penetrated seafloor, lifting up
10:55:28 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:55:28 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:55:28 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:55:28 DEBUG opendrift.models.oceandrift:572: 514 elements penetrated seafloor, lifting up
10:55:28 DEBUG opendrift.models.oceandrift:590: 51 elements reached seafloor, set to bottom
10:55:28 DEBUG opendrift.models.basemodel:836: Lifting 51 elements to seafloor.
10:55:28 DEBUG opendrift.models.sedimentdrift:112: Settling 51 elements at seafloor
10:55:28 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:28 DEBUG opendrift.models.basemodel:2945: 6423 active elements (0 deactivated)
10:55:28 DEBUG opendrift.models.basemodel:1658: to be seeded: 3577, already seeded 6423
10:55:28 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:28 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:28 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:28 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:28 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:28 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:28 DEBUG opendrift.models.basemodel:1253: Data needed for 6458 elements
10:55:28 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:28 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 17:00:00 (before)
2023-08-22 18:00:00 (after)
10:55:28 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 17:00:00) in space (linearNDFast)
10:55:28 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:28 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:28 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:28 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:28 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:28 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:28 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 33.5936 (max)
10:55:28 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:28 DEBUG opendrift.models.basemodel:1527: 6458 active elements
10:55:28 DEBUG opendrift.models.basemodel:1538: 59.09983896033767 <- latitude -> 59.19049064312003
10:55:28 DEBUG opendrift.models.basemodel:1543: 10.824341606435786 <- longitude -> 11.043731501630827
10:55:28 DEBUG opendrift.models.basemodel:1548: -32.700879236945546 <- z -> 0.0
10:55:28 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:28 DEBUG opendrift.models.basemodel:836: Lifting 443 elements to seafloor.
10:55:28 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:28 INFO opendrift.models.basemodel:2882: 2023-08-22 17:42:19.552469 - step 186 of 216 - 6458 active elements (0 deactivated)
10:55:28 DEBUG opendrift.models.basemodel:2888: 3542 elements scheduled.
10:55:28 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:28 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:28 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:28 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:28 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:28 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:28 DEBUG opendrift.models.basemodel:1253: Data needed for 6458 elements
10:55:28 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:28 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:28 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:28 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:28 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:28 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:28 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:28 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:28 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:28 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:28 DEBUG opendrift.models.basemodel:1253: Data needed for 6458 elements
10:55:28 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:28 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 17:00:00 (before)
2023-08-22 18:00:00 (after)
10:55:29 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:29 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:29 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:29 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:29 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:29 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:29 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x31x7) for time after (2023-08-22 18:00:00)
10:55:29 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 17:00:00) in space (linearNDFast)
10:55:29 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:29 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 18:00:00) in space (linearNDFast)
10:55:29 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4342 elements, expanding data 1
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 212 elements, expanding data 2
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4342 elements, expanding data 1
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 212 elements, expanding data 2
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4532 elements, expanding data 1
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 893 elements, expanding data 2
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 204 elements, expanding data 3
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4532 elements, expanding data 1
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 893 elements, expanding data 2
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 204 elements, expanding data 3
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4532 elements, expanding data 1
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 893 elements, expanding data 2
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 204 elements, expanding data 3
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4532 elements, expanding data 1
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 893 elements, expanding data 2
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 204 elements, expanding data 3
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4532 elements, expanding data 1
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 893 elements, expanding data 2
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 204 elements, expanding data 3
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4532 elements, expanding data 1
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 893 elements, expanding data 2
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 204 elements, expanding data 3
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4532 elements, expanding data 1
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 893 elements, expanding data 2
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 204 elements, expanding data 3
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5543 elements, expanding data 1
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2152 elements, expanding data 2
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5543 elements, expanding data 1
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2152 elements, expanding data 2
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5543 elements, expanding data 1
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2152 elements, expanding data 2
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5543 elements, expanding data 1
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2152 elements, expanding data 2
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5543 elements, expanding data 1
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2152 elements, expanding data 2
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5543 elements, expanding data 1
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2152 elements, expanding data 2
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5543 elements, expanding data 1
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2152 elements, expanding data 2
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4342 elements, expanding data 1
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 212 elements, expanding data 2
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4342 elements, expanding data 1
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 212 elements, expanding data 2
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4342 elements, expanding data 1
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 212 elements, expanding data 2
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4342 elements, expanding data 1
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 212 elements, expanding data 2
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4342 elements, expanding data 1
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 212 elements, expanding data 2
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4342 elements, expanding data 1
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 212 elements, expanding data 2
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4342 elements, expanding data 1
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 212 elements, expanding data 2
10:55:29 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:29 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 17:00:00, weight 0.29) and
after (2023-08-22 18:00:00, weight 0.71) in time
10:55:29 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.17566896638035 and -58.95627904040499 degrees.
10:55:29 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.17566896638035 and -58.95627904040499 degrees.
10:55:29 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:29 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:29 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:29 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:29 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:29 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:29 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.758727 (min) 1.01815 (max)
10:55:29 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.977762 (min) 0.779967 (max)
10:55:29 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000274027 (min) 0.000364684 (max)
10:55:29 DEBUG opendrift.models.basemodel:1524: x_wind: -6.07759 (min) 9.16679 (max)
10:55:29 DEBUG opendrift.models.basemodel:1524: y_wind: -4.16591 (min) 12.9655 (max)
10:55:29 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:29 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:29 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:29 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:29 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:29 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:29 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:29 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 33.5936 (max)
10:55:29 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:29 DEBUG opendrift.models.basemodel:1527: 6458 active elements
10:55:29 DEBUG opendrift.models.basemodel:1538: 59.09983896033767 <- latitude -> 59.19049064312003
10:55:29 DEBUG opendrift.models.basemodel:1543: 10.824341606435786 <- longitude -> 11.043731501630827
10:55:29 DEBUG opendrift.models.basemodel:1548: -32.700879236945546 <- z -> 0.0
10:55:29 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:29 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:29 DEBUG opendrift.models.physics_methods:940: min: 0.042970, mean: 4.053311, max: 11.101628
10:55:29 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.042970, mean: 4.053311, max: 11.101628
10:55:29 DEBUG opendrift.models.basemodel:813: 1167 elements hit coastline, moving back to water
10:55:29 DEBUG opendrift.models.basemodel:836: Lifting 148 elements to seafloor.
10:55:29 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:29 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:29 DEBUG opendrift.models.physics_methods:741: Advecting 43 of 6458 elements above 0.100m with wind-sheared ocean current (0.001059 m/s - 0.193644 m/s)
10:55:29 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:29 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:29 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.15250613925178524
10:55:29 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:29 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:29 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:29 DEBUG opendrift.models.oceandrift:572: 789 elements penetrated seafloor, lifting up
10:55:29 DEBUG opendrift.models.oceandrift:590: 81 elements reached seafloor, set to bottom
10:55:29 DEBUG opendrift.models.basemodel:836: Lifting 81 elements to seafloor.
10:55:29 DEBUG opendrift.models.sedimentdrift:112: Settling 81 elements at seafloor
10:55:29 DEBUG opendrift.models.oceandrift:572: 648 elements penetrated seafloor, lifting up
10:55:29 DEBUG opendrift.models.oceandrift:590: 60 elements reached seafloor, set to bottom
10:55:29 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
10:55:29 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
10:55:29 DEBUG opendrift.models.oceandrift:572: 628 elements penetrated seafloor, lifting up
10:55:29 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:55:29 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:55:29 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:55:29 DEBUG opendrift.models.oceandrift:572: 589 elements penetrated seafloor, lifting up
10:55:29 DEBUG opendrift.models.oceandrift:590: 73 elements reached seafloor, set to bottom
10:55:29 DEBUG opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
10:55:29 DEBUG opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
10:55:29 DEBUG opendrift.models.oceandrift:572: 576 elements penetrated seafloor, lifting up
10:55:29 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:55:29 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:55:29 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:55:29 DEBUG opendrift.models.oceandrift:572: 568 elements penetrated seafloor, lifting up
10:55:29 DEBUG opendrift.models.oceandrift:590: 64 elements reached seafloor, set to bottom
10:55:29 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
10:55:29 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
10:55:29 DEBUG opendrift.models.oceandrift:572: 527 elements penetrated seafloor, lifting up
10:55:29 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:55:29 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:55:29 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:55:29 DEBUG opendrift.models.oceandrift:572: 560 elements penetrated seafloor, lifting up
10:55:29 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:55:29 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:55:29 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:55:29 DEBUG opendrift.models.oceandrift:572: 512 elements penetrated seafloor, lifting up
10:55:29 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:55:29 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:55:29 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:55:29 DEBUG opendrift.models.oceandrift:572: 481 elements penetrated seafloor, lifting up
10:55:29 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:55:29 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:55:29 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:55:29 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:29 DEBUG opendrift.models.basemodel:2945: 6458 active elements (0 deactivated)
10:55:29 DEBUG opendrift.models.basemodel:1658: to be seeded: 3542, already seeded 6458
10:55:29 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:29 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:29 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:29 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:29 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:29 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:29 DEBUG opendrift.models.basemodel:1253: Data needed for 6493 elements
10:55:29 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:29 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 17:00:00 (before)
2023-08-22 18:00:00 (after)
10:55:29 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 17:00:00) in space (linearNDFast)
10:55:29 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:29 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:29 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:29 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:29 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:29 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:29 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 36.0662 (max)
10:55:29 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:29 DEBUG opendrift.models.basemodel:1527: 6493 active elements
10:55:29 DEBUG opendrift.models.basemodel:1538: 59.09894075389974 <- latitude -> 59.18992711664204
10:55:29 DEBUG opendrift.models.basemodel:1543: 10.81962932132219 <- longitude -> 11.039937058747313
10:55:29 DEBUG opendrift.models.basemodel:1548: -29.600439415646722 <- z -> 0.0
10:55:29 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:29 DEBUG opendrift.models.basemodel:836: Lifting 429 elements to seafloor.
10:55:29 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:29 INFO opendrift.models.basemodel:2882: 2023-08-22 17:52:19.552469 - step 187 of 216 - 6493 active elements (0 deactivated)
10:55:29 DEBUG opendrift.models.basemodel:2888: 3507 elements scheduled.
10:55:29 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:29 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:29 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:29 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:29 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:29 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:29 DEBUG opendrift.models.basemodel:1253: Data needed for 6493 elements
10:55:29 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:29 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:29 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:29 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:29 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:29 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:29 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:29 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:29 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:29 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:29 DEBUG opendrift.models.basemodel:1253: Data needed for 6493 elements
10:55:29 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:29 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 17:00:00 (before)
2023-08-22 18:00:00 (after)
10:55:30 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:30 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:30 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:30 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:30 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:30 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:30 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x30x7) for time after (2023-08-22 18:00:00)
10:55:30 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 17:00:00) in space (linearNDFast)
10:55:30 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:30 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 18:00:00) in space (linearNDFast)
10:55:30 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4386 elements, expanding data 1
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 219 elements, expanding data 2
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4386 elements, expanding data 1
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 219 elements, expanding data 2
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4562 elements, expanding data 1
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 897 elements, expanding data 2
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 209 elements, expanding data 3
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4562 elements, expanding data 1
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 897 elements, expanding data 2
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 209 elements, expanding data 3
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4562 elements, expanding data 1
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 897 elements, expanding data 2
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 209 elements, expanding data 3
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4562 elements, expanding data 1
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 897 elements, expanding data 2
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 209 elements, expanding data 3
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4562 elements, expanding data 1
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 897 elements, expanding data 2
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 209 elements, expanding data 3
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4562 elements, expanding data 1
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 897 elements, expanding data 2
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 209 elements, expanding data 3
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4562 elements, expanding data 1
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 897 elements, expanding data 2
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 209 elements, expanding data 3
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5561 elements, expanding data 1
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2179 elements, expanding data 2
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5561 elements, expanding data 1
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2179 elements, expanding data 2
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5561 elements, expanding data 1
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2179 elements, expanding data 2
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5561 elements, expanding data 1
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2179 elements, expanding data 2
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5561 elements, expanding data 1
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2179 elements, expanding data 2
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5561 elements, expanding data 1
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2179 elements, expanding data 2
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5561 elements, expanding data 1
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2179 elements, expanding data 2
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4386 elements, expanding data 1
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 219 elements, expanding data 2
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4386 elements, expanding data 1
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 219 elements, expanding data 2
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4386 elements, expanding data 1
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 219 elements, expanding data 2
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4386 elements, expanding data 1
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 219 elements, expanding data 2
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4386 elements, expanding data 1
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 219 elements, expanding data 2
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4386 elements, expanding data 1
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 219 elements, expanding data 2
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4386 elements, expanding data 1
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 219 elements, expanding data 2
10:55:30 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:30 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 17:00:00, weight 0.13) and
after (2023-08-22 18:00:00, weight 0.87) in time
10:55:30 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.180381244513235 and -58.96007349354787 degrees.
10:55:30 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.180381244513235 and -58.96007349354787 degrees.
10:55:30 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:30 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:30 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:30 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:30 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:30 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:30 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.78012 (min) 1.15655 (max)
10:55:30 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.11212 (min) 0.881457 (max)
10:55:30 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000277993 (min) 0.000410282 (max)
10:55:30 DEBUG opendrift.models.basemodel:1524: x_wind: -5.58118 (min) 9.10965 (max)
10:55:30 DEBUG opendrift.models.basemodel:1524: y_wind: -3.31155 (min) 13.086 (max)
10:55:30 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:30 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:30 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:30 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:30 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:30 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:30 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:30 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 36.0662 (max)
10:55:30 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:30 DEBUG opendrift.models.basemodel:1527: 6493 active elements
10:55:30 DEBUG opendrift.models.basemodel:1538: 59.09894075389974 <- latitude -> 59.18992711664204
10:55:30 DEBUG opendrift.models.basemodel:1543: 10.81962932132219 <- longitude -> 11.039937058747313
10:55:30 DEBUG opendrift.models.basemodel:1548: -29.600439415646722 <- z -> 0.0
10:55:30 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:30 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:30 DEBUG opendrift.models.physics_methods:940: min: 0.129903, mean: 4.067453, max: 11.237571
10:55:30 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.129903, mean: 4.067453, max: 11.237571
10:55:30 DEBUG opendrift.models.basemodel:813: 1154 elements hit coastline, moving back to water
10:55:30 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
10:55:30 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:30 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:30 DEBUG opendrift.models.physics_methods:741: Advecting 47 of 6493 elements above 0.100m with wind-sheared ocean current (0.003104 m/s - 0.177136 m/s)
10:55:30 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:30 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:30 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.15626387344940182
10:55:30 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:30 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:30 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:30 DEBUG opendrift.models.oceandrift:572: 815 elements penetrated seafloor, lifting up
10:55:30 DEBUG opendrift.models.oceandrift:590: 92 elements reached seafloor, set to bottom
10:55:30 DEBUG opendrift.models.basemodel:836: Lifting 92 elements to seafloor.
10:55:30 DEBUG opendrift.models.sedimentdrift:112: Settling 92 elements at seafloor
10:55:30 DEBUG opendrift.models.oceandrift:572: 684 elements penetrated seafloor, lifting up
10:55:30 DEBUG opendrift.models.oceandrift:590: 83 elements reached seafloor, set to bottom
10:55:30 DEBUG opendrift.models.basemodel:836: Lifting 83 elements to seafloor.
10:55:30 DEBUG opendrift.models.sedimentdrift:112: Settling 83 elements at seafloor
10:55:30 DEBUG opendrift.models.oceandrift:572: 630 elements penetrated seafloor, lifting up
10:55:30 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:55:30 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:55:30 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:55:30 DEBUG opendrift.models.oceandrift:572: 588 elements penetrated seafloor, lifting up
10:55:30 DEBUG opendrift.models.oceandrift:590: 60 elements reached seafloor, set to bottom
10:55:30 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
10:55:30 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
10:55:30 DEBUG opendrift.models.oceandrift:572: 580 elements penetrated seafloor, lifting up
10:55:30 DEBUG opendrift.models.oceandrift:590: 53 elements reached seafloor, set to bottom
10:55:30 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
10:55:30 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
10:55:30 DEBUG opendrift.models.oceandrift:572: 560 elements penetrated seafloor, lifting up
10:55:30 DEBUG opendrift.models.oceandrift:590: 69 elements reached seafloor, set to bottom
10:55:30 DEBUG opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
10:55:30 DEBUG opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
10:55:30 DEBUG opendrift.models.oceandrift:572: 532 elements penetrated seafloor, lifting up
10:55:30 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:55:30 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:55:30 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:55:30 DEBUG opendrift.models.oceandrift:572: 570 elements penetrated seafloor, lifting up
10:55:30 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:55:30 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:55:30 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:55:30 DEBUG opendrift.models.oceandrift:572: 572 elements penetrated seafloor, lifting up
10:55:30 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:55:30 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:55:30 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:55:30 DEBUG opendrift.models.oceandrift:572: 497 elements penetrated seafloor, lifting up
10:55:30 DEBUG opendrift.models.oceandrift:590: 60 elements reached seafloor, set to bottom
10:55:30 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
10:55:30 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
10:55:30 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:30 DEBUG opendrift.models.basemodel:2945: 6493 active elements (0 deactivated)
10:55:30 DEBUG opendrift.models.basemodel:1658: to be seeded: 3507, already seeded 6493
10:55:30 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:30 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:30 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:30 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:30 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:30 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:30 DEBUG opendrift.models.basemodel:1253: Data needed for 6528 elements
10:55:30 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:30 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 18:00:00 (before)
2023-08-22 19:00:00 (after)
10:55:30 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 18:00:00) in space (linearNDFast)
10:55:30 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:30 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:30 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:30 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:30 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:30 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:30 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 37.7136 (max)
10:55:30 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:30 DEBUG opendrift.models.basemodel:1527: 6528 active elements
10:55:30 DEBUG opendrift.models.basemodel:1538: 59.0978612952228 <- latitude -> 59.19147722318516
10:55:30 DEBUG opendrift.models.basemodel:1543: 10.817147164228558 <- longitude -> 11.043032875296618
10:55:30 DEBUG opendrift.models.basemodel:1548: -30.47181942316795 <- z -> 0.0
10:55:30 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:30 DEBUG opendrift.models.basemodel:836: Lifting 470 elements to seafloor.
10:55:30 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:30 INFO opendrift.models.basemodel:2882: 2023-08-22 18:02:19.552469 - step 188 of 216 - 6528 active elements (0 deactivated)
10:55:30 DEBUG opendrift.models.basemodel:2888: 3472 elements scheduled.
10:55:30 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:30 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:30 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:30 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:30 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:30 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:30 DEBUG opendrift.models.basemodel:1253: Data needed for 6528 elements
10:55:30 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:30 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:30 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:30 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:30 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:30 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:30 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:30 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:30 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:30 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:30 DEBUG opendrift.models.basemodel:1253: Data needed for 6528 elements
10:55:30 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:30 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 18:00:00 (before)
2023-08-22 19:00:00 (after)
10:55:32 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:32 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:32 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:32 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:32 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:32 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:32 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x31x7) for time after (2023-08-22 19:00:00)
10:55:32 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 18:00:00) in space (linearNDFast)
10:55:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:32 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 19:00:00) in space (linearNDFast)
10:55:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4395 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 218 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4395 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 218 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4582 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 890 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 209 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4582 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 890 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 209 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4582 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 890 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 209 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4582 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 890 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 209 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4582 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 890 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 209 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4582 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 890 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 209 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4582 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 890 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 209 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5588 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2233 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5588 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2233 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5588 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2233 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5588 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2233 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5588 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2233 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5588 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2233 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5588 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2233 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4395 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 218 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4395 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 218 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4395 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 218 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4395 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 218 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4395 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 218 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4395 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 218 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4395 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 218 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:32 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 18:00:00, weight 0.96) and
after (2023-08-22 19:00:00, weight 0.04) in time
10:55:32 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.18286341011263 and -58.95697767200691 degrees.
10:55:32 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.18286341011263 and -58.95697767200691 degrees.
10:55:32 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:32 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:32 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:32 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:32 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:32 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:32 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.739045 (min) 0.92674 (max)
10:55:32 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.934773 (min) 0.701914 (max)
10:55:32 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000288889 (min) 0.000465877 (max)
10:55:32 DEBUG opendrift.models.basemodel:1524: x_wind: -5.28346 (min) 9.42979 (max)
10:55:32 DEBUG opendrift.models.basemodel:1524: y_wind: -4.01565 (min) 11.2027 (max)
10:55:32 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:32 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:32 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:32 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:32 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:32 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:32 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:32 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 37.7136 (max)
10:55:32 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:32 DEBUG opendrift.models.basemodel:1527: 6528 active elements
10:55:32 DEBUG opendrift.models.basemodel:1538: 59.0978612952228 <- latitude -> 59.19147722318516
10:55:32 DEBUG opendrift.models.basemodel:1543: 10.817147164228558 <- longitude -> 11.043032875296618
10:55:32 DEBUG opendrift.models.basemodel:1548: -30.47181942316795 <- z -> 0.0
10:55:32 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:32 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:32 DEBUG opendrift.models.physics_methods:940: min: 0.032673, mean: 4.034724, max: 9.603855
10:55:32 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.032673, mean: 4.034724, max: 9.603855
10:55:32 DEBUG opendrift.models.basemodel:813: 1144 elements hit coastline, moving back to water
10:55:32 DEBUG opendrift.models.basemodel:836: Lifting 147 elements to seafloor.
10:55:32 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:32 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:32 DEBUG opendrift.models.physics_methods:741: Advecting 49 of 6528 elements above 0.100m with wind-sheared ocean current (0.007915 m/s - 0.162739 m/s)
10:55:32 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:32 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:32 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.11413246052129744
10:55:32 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:32 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:32 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:32 DEBUG opendrift.models.oceandrift:572: 798 elements penetrated seafloor, lifting up
10:55:32 DEBUG opendrift.models.oceandrift:590: 74 elements reached seafloor, set to bottom
10:55:32 DEBUG opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
10:55:32 DEBUG opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
10:55:32 DEBUG opendrift.models.oceandrift:572: 636 elements penetrated seafloor, lifting up
10:55:32 DEBUG opendrift.models.oceandrift:590: 77 elements reached seafloor, set to bottom
10:55:32 DEBUG opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
10:55:32 DEBUG opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
10:55:32 DEBUG opendrift.models.oceandrift:572: 601 elements penetrated seafloor, lifting up
10:55:32 DEBUG opendrift.models.oceandrift:590: 69 elements reached seafloor, set to bottom
10:55:32 DEBUG opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
10:55:32 DEBUG opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
10:55:32 DEBUG opendrift.models.oceandrift:572: 563 elements penetrated seafloor, lifting up
10:55:32 DEBUG opendrift.models.oceandrift:590: 74 elements reached seafloor, set to bottom
10:55:32 DEBUG opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
10:55:32 DEBUG opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
10:55:32 DEBUG opendrift.models.oceandrift:572: 554 elements penetrated seafloor, lifting up
10:55:32 DEBUG opendrift.models.oceandrift:590: 47 elements reached seafloor, set to bottom
10:55:32 DEBUG opendrift.models.basemodel:836: Lifting 47 elements to seafloor.
10:55:32 DEBUG opendrift.models.sedimentdrift:112: Settling 47 elements at seafloor
10:55:32 DEBUG opendrift.models.oceandrift:572: 543 elements penetrated seafloor, lifting up
10:55:32 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:55:32 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:55:32 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:55:32 DEBUG opendrift.models.oceandrift:572: 586 elements penetrated seafloor, lifting up
10:55:32 DEBUG opendrift.models.oceandrift:590: 54 elements reached seafloor, set to bottom
10:55:32 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
10:55:32 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
10:55:32 DEBUG opendrift.models.oceandrift:572: 542 elements penetrated seafloor, lifting up
10:55:32 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:55:32 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:55:32 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:55:32 DEBUG opendrift.models.oceandrift:572: 546 elements penetrated seafloor, lifting up
10:55:32 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:55:32 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:55:32 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:55:32 DEBUG opendrift.models.oceandrift:572: 487 elements penetrated seafloor, lifting up
10:55:32 DEBUG opendrift.models.oceandrift:590: 60 elements reached seafloor, set to bottom
10:55:32 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
10:55:32 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
10:55:32 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:32 DEBUG opendrift.models.basemodel:2945: 6528 active elements (0 deactivated)
10:55:32 DEBUG opendrift.models.basemodel:1658: to be seeded: 3472, already seeded 6528
10:55:32 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:55:32 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:32 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:32 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:32 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:32 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:32 DEBUG opendrift.models.basemodel:1253: Data needed for 6562 elements
10:55:32 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:32 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 18:00:00 (before)
2023-08-22 19:00:00 (after)
10:55:32 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 18:00:00) in space (linearNDFast)
10:55:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:32 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:32 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:32 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:32 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:32 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:32 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 35.8897 (max)
10:55:32 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:32 DEBUG opendrift.models.basemodel:1527: 6562 active elements
10:55:32 DEBUG opendrift.models.basemodel:1538: 59.0973505988439 <- latitude -> 59.190297333018094
10:55:32 DEBUG opendrift.models.basemodel:1543: 10.819897038091266 <- longitude -> 11.040053215747962
10:55:32 DEBUG opendrift.models.basemodel:1548: -27.38385558538444 <- z -> 0.0
10:55:32 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:32 DEBUG opendrift.models.basemodel:836: Lifting 419 elements to seafloor.
10:55:32 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:32 INFO opendrift.models.basemodel:2882: 2023-08-22 18:12:19.552469 - step 189 of 216 - 6562 active elements (0 deactivated)
10:55:32 DEBUG opendrift.models.basemodel:2888: 3438 elements scheduled.
10:55:32 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:32 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:32 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:32 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:32 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:32 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:32 DEBUG opendrift.models.basemodel:1253: Data needed for 6562 elements
10:55:32 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:32 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:32 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:32 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:32 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:32 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:32 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:32 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:32 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:32 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:32 DEBUG opendrift.models.basemodel:1253: Data needed for 6562 elements
10:55:32 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:32 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 18:00:00 (before)
2023-08-22 19:00:00 (after)
10:55:32 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:32 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:32 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:32 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:32 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:32 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:32 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x30x7) for time after (2023-08-22 19:00:00)
10:55:32 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 18:00:00) in space (linearNDFast)
10:55:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:32 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 19:00:00) in space (linearNDFast)
10:55:32 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4438 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 234 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4438 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 234 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4618 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 882 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 220 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4618 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 882 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 220 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4618 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 882 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 220 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4618 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 882 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 220 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4618 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 882 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 220 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4618 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 882 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 220 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4618 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 882 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 220 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5621 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2266 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5621 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2266 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5621 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2266 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5621 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2266 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5621 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2266 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5621 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2266 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5621 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2266 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4438 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 234 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4438 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 234 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4438 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 234 elements, expanding data 2
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4438 elements, expanding data 1
10:55:32 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 234 elements, expanding data 2
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4438 elements, expanding data 1
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 234 elements, expanding data 2
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4438 elements, expanding data 1
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 234 elements, expanding data 2
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4438 elements, expanding data 1
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 234 elements, expanding data 2
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:33 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 18:00:00, weight 0.79) and
after (2023-08-22 19:00:00, weight 0.21) in time
10:55:33 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.180113532683414 and -58.95995734089675 degrees.
10:55:33 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.180113532683414 and -58.95995734089675 degrees.
10:55:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:33 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:33 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:33 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:33 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:33 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:33 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.74879 (min) 1.10606 (max)
10:55:33 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.953182 (min) 0.858769 (max)
10:55:33 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000277866 (min) 0.000425973 (max)
10:55:33 DEBUG opendrift.models.basemodel:1524: x_wind: -5.69007 (min) 7.67856 (max)
10:55:33 DEBUG opendrift.models.basemodel:1524: y_wind: -2.98442 (min) 11.4127 (max)
10:55:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:33 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:33 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:33 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:33 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 35.8897 (max)
10:55:33 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:33 DEBUG opendrift.models.basemodel:1527: 6562 active elements
10:55:33 DEBUG opendrift.models.basemodel:1538: 59.0973505988439 <- latitude -> 59.190297333018094
10:55:33 DEBUG opendrift.models.basemodel:1543: 10.819897038091266 <- longitude -> 11.040053215747962
10:55:33 DEBUG opendrift.models.basemodel:1548: -27.38385558538444 <- z -> 0.0
10:55:33 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:33 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:33 DEBUG opendrift.models.physics_methods:940: min: 0.055500, mean: 3.885048, max: 10.385566
10:55:33 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.055500, mean: 3.885048, max: 10.385566
10:55:33 DEBUG opendrift.models.basemodel:813: 1194 elements hit coastline, moving back to water
10:55:33 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:55:33 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:33 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:33 DEBUG opendrift.models.physics_methods:741: Advecting 52 of 6562 elements above 0.100m with wind-sheared ocean current (0.002158 m/s - 0.172278 m/s)
10:55:33 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:33 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:33 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.13346764474113462
10:55:33 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:33 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:33 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:33 DEBUG opendrift.models.oceandrift:572: 772 elements penetrated seafloor, lifting up
10:55:33 DEBUG opendrift.models.oceandrift:590: 92 elements reached seafloor, set to bottom
10:55:33 DEBUG opendrift.models.basemodel:836: Lifting 92 elements to seafloor.
10:55:33 DEBUG opendrift.models.sedimentdrift:112: Settling 92 elements at seafloor
10:55:33 DEBUG opendrift.models.oceandrift:572: 670 elements penetrated seafloor, lifting up
10:55:33 DEBUG opendrift.models.oceandrift:590: 92 elements reached seafloor, set to bottom
10:55:33 DEBUG opendrift.models.basemodel:836: Lifting 92 elements to seafloor.
10:55:33 DEBUG opendrift.models.sedimentdrift:112: Settling 92 elements at seafloor
10:55:33 DEBUG opendrift.models.oceandrift:572: 617 elements penetrated seafloor, lifting up
10:55:33 DEBUG opendrift.models.oceandrift:590: 70 elements reached seafloor, set to bottom
10:55:33 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
10:55:33 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
10:55:33 DEBUG opendrift.models.oceandrift:572: 563 elements penetrated seafloor, lifting up
10:55:33 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:55:33 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:55:33 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:55:33 DEBUG opendrift.models.oceandrift:572: 577 elements penetrated seafloor, lifting up
10:55:33 DEBUG opendrift.models.oceandrift:590: 64 elements reached seafloor, set to bottom
10:55:33 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
10:55:33 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
10:55:33 DEBUG opendrift.models.oceandrift:572: 541 elements penetrated seafloor, lifting up
10:55:33 DEBUG opendrift.models.oceandrift:590: 66 elements reached seafloor, set to bottom
10:55:33 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
10:55:33 DEBUG opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
10:55:33 DEBUG opendrift.models.oceandrift:572: 511 elements penetrated seafloor, lifting up
10:55:33 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:55:33 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:55:33 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:55:33 DEBUG opendrift.models.oceandrift:572: 519 elements penetrated seafloor, lifting up
10:55:33 DEBUG opendrift.models.oceandrift:590: 53 elements reached seafloor, set to bottom
10:55:33 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
10:55:33 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
10:55:33 DEBUG opendrift.models.oceandrift:572: 524 elements penetrated seafloor, lifting up
10:55:33 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:55:33 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:55:33 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:55:33 DEBUG opendrift.models.oceandrift:572: 525 elements penetrated seafloor, lifting up
10:55:33 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:55:33 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:55:33 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:55:33 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:33 DEBUG opendrift.models.basemodel:2945: 6562 active elements (0 deactivated)
10:55:33 DEBUG opendrift.models.basemodel:1658: to be seeded: 3438, already seeded 6562
10:55:33 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:33 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:33 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:33 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:33 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:33 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:33 DEBUG opendrift.models.basemodel:1253: Data needed for 6597 elements
10:55:33 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:33 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 18:00:00 (before)
2023-08-22 19:00:00 (after)
10:55:33 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 18:00:00) in space (linearNDFast)
10:55:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:33 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:33 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:33 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:33 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:33 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 35.9887 (max)
10:55:33 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:33 DEBUG opendrift.models.basemodel:1527: 6597 active elements
10:55:33 DEBUG opendrift.models.basemodel:1538: 59.097273008807534 <- latitude -> 59.19008881115292
10:55:33 DEBUG opendrift.models.basemodel:1543: 10.819103385420563 <- longitude -> 11.042500554196014
10:55:33 DEBUG opendrift.models.basemodel:1548: -25.3829303761212 <- z -> 0.0
10:55:33 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:33 DEBUG opendrift.models.basemodel:836: Lifting 447 elements to seafloor.
10:55:33 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:33 INFO opendrift.models.basemodel:2882: 2023-08-22 18:22:19.552469 - step 190 of 216 - 6597 active elements (0 deactivated)
10:55:33 DEBUG opendrift.models.basemodel:2888: 3403 elements scheduled.
10:55:33 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:33 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:33 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:33 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:33 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:33 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:33 DEBUG opendrift.models.basemodel:1253: Data needed for 6597 elements
10:55:33 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:33 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:33 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:33 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:33 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:33 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:33 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:33 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:33 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:33 DEBUG opendrift.models.basemodel:1253: Data needed for 6597 elements
10:55:33 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:33 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 18:00:00 (before)
2023-08-22 19:00:00 (after)
10:55:33 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:33 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:33 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:33 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:33 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:33 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:33 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x31x7) for time after (2023-08-22 19:00:00)
10:55:33 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 18:00:00) in space (linearNDFast)
10:55:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:33 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 19:00:00) in space (linearNDFast)
10:55:33 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4489 elements, expanding data 1
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 2
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4489 elements, expanding data 1
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 2
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4664 elements, expanding data 1
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 897 elements, expanding data 2
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 214 elements, expanding data 3
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4664 elements, expanding data 1
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 897 elements, expanding data 2
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 214 elements, expanding data 3
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4664 elements, expanding data 1
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 897 elements, expanding data 2
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 214 elements, expanding data 3
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4664 elements, expanding data 1
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 897 elements, expanding data 2
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 214 elements, expanding data 3
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4664 elements, expanding data 1
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 897 elements, expanding data 2
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 214 elements, expanding data 3
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4664 elements, expanding data 1
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 897 elements, expanding data 2
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 214 elements, expanding data 3
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4664 elements, expanding data 1
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 897 elements, expanding data 2
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 214 elements, expanding data 3
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5662 elements, expanding data 1
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2261 elements, expanding data 2
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5662 elements, expanding data 1
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2261 elements, expanding data 2
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5662 elements, expanding data 1
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2261 elements, expanding data 2
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5662 elements, expanding data 1
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2261 elements, expanding data 2
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5662 elements, expanding data 1
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2261 elements, expanding data 2
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5662 elements, expanding data 1
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2261 elements, expanding data 2
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5662 elements, expanding data 1
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2261 elements, expanding data 2
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4489 elements, expanding data 1
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 2
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4489 elements, expanding data 1
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 2
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4489 elements, expanding data 1
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 2
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4489 elements, expanding data 1
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 2
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4489 elements, expanding data 1
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 2
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4489 elements, expanding data 1
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 2
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4489 elements, expanding data 1
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 2
10:55:33 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:33 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 18:00:00, weight 0.63) and
after (2023-08-22 19:00:00, weight 0.37) in time
10:55:33 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.18090718545059 and -58.95750998702522 degrees.
10:55:33 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.18090718545059 and -58.95750998702522 degrees.
10:55:33 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:33 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:33 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:33 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:33 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:33 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:33 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.758144 (min) 1.04186 (max)
10:55:33 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.868182 (min) 0.819257 (max)
10:55:33 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000304173 (min) 0.000355825 (max)
10:55:33 DEBUG opendrift.models.basemodel:1524: x_wind: -8.0073 (min) 7.9572 (max)
10:55:33 DEBUG opendrift.models.basemodel:1524: y_wind: -5.07074 (min) 11.091 (max)
10:55:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:33 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:33 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:33 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:33 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:33 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 35.9887 (max)
10:55:33 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:33 DEBUG opendrift.models.basemodel:1527: 6597 active elements
10:55:33 DEBUG opendrift.models.basemodel:1538: 59.097273008807534 <- latitude -> 59.19008881115292
10:55:33 DEBUG opendrift.models.basemodel:1543: 10.819103385420563 <- longitude -> 11.042500554196014
10:55:33 DEBUG opendrift.models.basemodel:1548: -25.3829303761212 <- z -> 0.0
10:55:33 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:33 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:33 DEBUG opendrift.models.physics_methods:940: min: 0.028241, mean: 3.734534, max: 9.478696
10:55:33 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.028241, mean: 3.734534, max: 9.478696
10:55:33 DEBUG opendrift.models.basemodel:813: 1182 elements hit coastline, moving back to water
10:55:33 DEBUG opendrift.models.basemodel:836: Lifting 26 elements to seafloor.
10:55:34 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:34 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:34 DEBUG opendrift.models.physics_methods:741: Advecting 46 of 6597 elements above 0.100m with wind-sheared ocean current (0.000801 m/s - 0.156012 m/s)
10:55:34 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:34 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:34 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.11117713652618408
10:55:34 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:34 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:34 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:34 DEBUG opendrift.models.oceandrift:572: 778 elements penetrated seafloor, lifting up
10:55:34 DEBUG opendrift.models.oceandrift:590: 90 elements reached seafloor, set to bottom
10:55:34 DEBUG opendrift.models.basemodel:836: Lifting 90 elements to seafloor.
10:55:34 DEBUG opendrift.models.sedimentdrift:112: Settling 90 elements at seafloor
10:55:34 DEBUG opendrift.models.oceandrift:572: 662 elements penetrated seafloor, lifting up
10:55:34 DEBUG opendrift.models.oceandrift:590: 75 elements reached seafloor, set to bottom
10:55:34 DEBUG opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
10:55:34 DEBUG opendrift.models.sedimentdrift:112: Settling 75 elements at seafloor
10:55:34 DEBUG opendrift.models.oceandrift:572: 595 elements penetrated seafloor, lifting up
10:55:34 DEBUG opendrift.models.oceandrift:590: 71 elements reached seafloor, set to bottom
10:55:34 DEBUG opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
10:55:34 DEBUG opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
10:55:34 DEBUG opendrift.models.oceandrift:572: 566 elements penetrated seafloor, lifting up
10:55:34 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:55:34 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:55:34 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:55:34 DEBUG opendrift.models.oceandrift:572: 585 elements penetrated seafloor, lifting up
10:55:34 DEBUG opendrift.models.oceandrift:590: 72 elements reached seafloor, set to bottom
10:55:34 DEBUG opendrift.models.basemodel:836: Lifting 72 elements to seafloor.
10:55:34 DEBUG opendrift.models.sedimentdrift:112: Settling 72 elements at seafloor
10:55:34 DEBUG opendrift.models.oceandrift:572: 568 elements penetrated seafloor, lifting up
10:55:34 DEBUG opendrift.models.oceandrift:590: 73 elements reached seafloor, set to bottom
10:55:34 DEBUG opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
10:55:34 DEBUG opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
10:55:34 DEBUG opendrift.models.oceandrift:572: 508 elements penetrated seafloor, lifting up
10:55:34 DEBUG opendrift.models.oceandrift:590: 67 elements reached seafloor, set to bottom
10:55:34 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
10:55:34 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
10:55:34 DEBUG opendrift.models.oceandrift:572: 504 elements penetrated seafloor, lifting up
10:55:34 DEBUG opendrift.models.oceandrift:590: 44 elements reached seafloor, set to bottom
10:55:34 DEBUG opendrift.models.basemodel:836: Lifting 44 elements to seafloor.
10:55:34 DEBUG opendrift.models.sedimentdrift:112: Settling 44 elements at seafloor
10:55:34 DEBUG opendrift.models.oceandrift:572: 515 elements penetrated seafloor, lifting up
10:55:34 DEBUG opendrift.models.oceandrift:590: 67 elements reached seafloor, set to bottom
10:55:34 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
10:55:34 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
10:55:34 DEBUG opendrift.models.oceandrift:572: 495 elements penetrated seafloor, lifting up
10:55:34 DEBUG opendrift.models.oceandrift:590: 50 elements reached seafloor, set to bottom
10:55:34 DEBUG opendrift.models.basemodel:836: Lifting 50 elements to seafloor.
10:55:34 DEBUG opendrift.models.sedimentdrift:112: Settling 50 elements at seafloor
10:55:34 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:34 DEBUG opendrift.models.basemodel:2945: 6597 active elements (0 deactivated)
10:55:34 DEBUG opendrift.models.basemodel:1658: to be seeded: 3403, already seeded 6597
10:55:34 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:34 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:34 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:34 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:34 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:34 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:34 DEBUG opendrift.models.basemodel:1253: Data needed for 6632 elements
10:55:34 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:34 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 18:00:00 (before)
2023-08-22 19:00:00 (after)
10:55:34 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 18:00:00) in space (linearNDFast)
10:55:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:34 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:34 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:34 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:34 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:34 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:34 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 34.6023 (max)
10:55:34 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:34 DEBUG opendrift.models.basemodel:1527: 6632 active elements
10:55:34 DEBUG opendrift.models.basemodel:1538: 59.096119312404085 <- latitude -> 59.190859541346356
10:55:34 DEBUG opendrift.models.basemodel:1543: 10.820832260514216 <- longitude -> 11.043473926474338
10:55:34 DEBUG opendrift.models.basemodel:1548: -18.15673734411989 <- z -> 0.0
10:55:34 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:34 DEBUG opendrift.models.basemodel:836: Lifting 479 elements to seafloor.
10:55:34 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:34 INFO opendrift.models.basemodel:2882: 2023-08-22 18:32:19.552469 - step 191 of 216 - 6632 active elements (0 deactivated)
10:55:34 DEBUG opendrift.models.basemodel:2888: 3368 elements scheduled.
10:55:34 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:34 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:34 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:34 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:34 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:34 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:34 DEBUG opendrift.models.basemodel:1253: Data needed for 6632 elements
10:55:34 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:34 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:34 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:34 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:34 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:34 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:34 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:34 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:34 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:34 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:34 DEBUG opendrift.models.basemodel:1253: Data needed for 6632 elements
10:55:34 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:34 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 18:00:00 (before)
2023-08-22 19:00:00 (after)
10:55:34 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:34 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:34 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:34 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:34 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:34 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:34 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x31x6) for time after (2023-08-22 19:00:00)
10:55:34 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 18:00:00) in space (linearNDFast)
10:55:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:34 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 19:00:00) in space (linearNDFast)
10:55:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4505 elements, expanding data 1
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4505 elements, expanding data 1
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4676 elements, expanding data 1
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 902 elements, expanding data 2
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 215 elements, expanding data 3
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4676 elements, expanding data 1
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 902 elements, expanding data 2
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 215 elements, expanding data 3
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4676 elements, expanding data 1
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 902 elements, expanding data 2
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 215 elements, expanding data 3
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4676 elements, expanding data 1
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 902 elements, expanding data 2
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 215 elements, expanding data 3
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4676 elements, expanding data 1
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 902 elements, expanding data 2
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 215 elements, expanding data 3
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4676 elements, expanding data 1
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 902 elements, expanding data 2
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 215 elements, expanding data 3
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5693 elements, expanding data 1
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2302 elements, expanding data 2
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5693 elements, expanding data 1
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2302 elements, expanding data 2
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5693 elements, expanding data 1
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2302 elements, expanding data 2
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5693 elements, expanding data 1
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2302 elements, expanding data 2
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5693 elements, expanding data 1
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2302 elements, expanding data 2
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5693 elements, expanding data 1
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2302 elements, expanding data 2
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4505 elements, expanding data 1
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4505 elements, expanding data 1
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4505 elements, expanding data 1
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4505 elements, expanding data 1
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4505 elements, expanding data 1
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4505 elements, expanding data 1
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
10:55:34 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:34 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 18:00:00, weight 0.46) and
after (2023-08-22 19:00:00, weight 0.54) in time
10:55:34 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.179178314899865 and -58.9565366153766 degrees.
10:55:34 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.179178314899865 and -58.9565366153766 degrees.
10:55:34 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:34 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:34 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:34 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:34 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:34 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:34 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.812107 (min) 0.911265 (max)
10:55:34 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.939661 (min) 0.749406 (max)
10:55:34 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000383399 (min) 0.000466734 (max)
10:55:34 DEBUG opendrift.models.basemodel:1524: x_wind: -7.71905 (min) 8.24568 (max)
10:55:34 DEBUG opendrift.models.basemodel:1524: y_wind: -4.31212 (min) 11.5179 (max)
10:55:34 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:34 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:34 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:34 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:34 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:34 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:34 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:34 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 34.6023 (max)
10:55:34 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:34 DEBUG opendrift.models.basemodel:1527: 6632 active elements
10:55:34 DEBUG opendrift.models.basemodel:1538: 59.096119312404085 <- latitude -> 59.190859541346356
10:55:34 DEBUG opendrift.models.basemodel:1543: 10.820832260514216 <- longitude -> 11.043473926474338
10:55:34 DEBUG opendrift.models.basemodel:1548: -18.15673734411989 <- z -> 0.0
10:55:34 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:34 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:34 DEBUG opendrift.models.physics_methods:940: min: 0.095156, mean: 3.583189, max: 9.943398
10:55:34 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.095156, mean: 3.583189, max: 9.943398
10:55:34 DEBUG opendrift.models.basemodel:813: 1164 elements hit coastline, moving back to water
10:55:34 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:55:34 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:34 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:34 DEBUG opendrift.models.physics_methods:741: Advecting 43 of 6632 elements above 0.100m with wind-sheared ocean current (0.000299 m/s - 0.166928 m/s)
10:55:34 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:34 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:34 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.12234506895978926
10:55:34 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:34 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:34 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:34 DEBUG opendrift.models.oceandrift:572: 795 elements penetrated seafloor, lifting up
10:55:34 DEBUG opendrift.models.oceandrift:590: 78 elements reached seafloor, set to bottom
10:55:34 DEBUG opendrift.models.basemodel:836: Lifting 78 elements to seafloor.
10:55:34 DEBUG opendrift.models.sedimentdrift:112: Settling 78 elements at seafloor
10:55:34 DEBUG opendrift.models.oceandrift:572: 606 elements penetrated seafloor, lifting up
10:55:34 DEBUG opendrift.models.oceandrift:590: 87 elements reached seafloor, set to bottom
10:55:34 DEBUG opendrift.models.basemodel:836: Lifting 87 elements to seafloor.
10:55:34 DEBUG opendrift.models.sedimentdrift:112: Settling 87 elements at seafloor
10:55:34 DEBUG opendrift.models.oceandrift:572: 576 elements penetrated seafloor, lifting up
10:55:34 DEBUG opendrift.models.oceandrift:590: 66 elements reached seafloor, set to bottom
10:55:34 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
10:55:34 DEBUG opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
10:55:34 DEBUG opendrift.models.oceandrift:572: 543 elements penetrated seafloor, lifting up
10:55:34 DEBUG opendrift.models.oceandrift:590: 73 elements reached seafloor, set to bottom
10:55:34 DEBUG opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
10:55:34 DEBUG opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
10:55:34 DEBUG opendrift.models.oceandrift:572: 536 elements penetrated seafloor, lifting up
10:55:34 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:55:34 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:55:34 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:55:34 DEBUG opendrift.models.oceandrift:572: 470 elements penetrated seafloor, lifting up
10:55:34 DEBUG opendrift.models.oceandrift:590: 54 elements reached seafloor, set to bottom
10:55:34 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
10:55:34 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
10:55:34 DEBUG opendrift.models.oceandrift:572: 480 elements penetrated seafloor, lifting up
10:55:34 DEBUG opendrift.models.oceandrift:590: 63 elements reached seafloor, set to bottom
10:55:34 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
10:55:34 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
10:55:34 DEBUG opendrift.models.oceandrift:572: 515 elements penetrated seafloor, lifting up
10:55:34 DEBUG opendrift.models.oceandrift:590: 62 elements reached seafloor, set to bottom
10:55:34 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
10:55:34 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
10:55:34 DEBUG opendrift.models.oceandrift:572: 482 elements penetrated seafloor, lifting up
10:55:34 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:55:34 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:55:34 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:55:34 DEBUG opendrift.models.oceandrift:572: 492 elements penetrated seafloor, lifting up
10:55:34 DEBUG opendrift.models.oceandrift:590: 64 elements reached seafloor, set to bottom
10:55:34 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
10:55:34 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
10:55:34 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:34 DEBUG opendrift.models.basemodel:2945: 6632 active elements (0 deactivated)
10:55:34 DEBUG opendrift.models.basemodel:1658: to be seeded: 3368, already seeded 6632
10:55:34 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:34 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:34 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:34 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:34 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:34 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:34 DEBUG opendrift.models.basemodel:1253: Data needed for 6667 elements
10:55:34 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:34 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 18:00:00 (before)
2023-08-22 19:00:00 (after)
10:55:34 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 18:00:00) in space (linearNDFast)
10:55:34 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:35 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:35 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:35 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:35 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:35 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 33.7185 (max)
10:55:35 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:35 DEBUG opendrift.models.basemodel:1527: 6667 active elements
10:55:35 DEBUG opendrift.models.basemodel:1538: 59.09504312913278 <- latitude -> 59.19001862978162
10:55:35 DEBUG opendrift.models.basemodel:1543: 10.822032424362108 <- longitude -> 11.040846760582717
10:55:35 DEBUG opendrift.models.basemodel:1548: -20.08321319231133 <- z -> 0.0
10:55:35 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:35 DEBUG opendrift.models.basemodel:836: Lifting 481 elements to seafloor.
10:55:35 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:35 INFO opendrift.models.basemodel:2882: 2023-08-22 18:42:19.552469 - step 192 of 216 - 6667 active elements (0 deactivated)
10:55:35 DEBUG opendrift.models.basemodel:2888: 3333 elements scheduled.
10:55:35 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:35 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:35 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:35 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:35 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:35 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:35 DEBUG opendrift.models.basemodel:1253: Data needed for 6667 elements
10:55:35 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:35 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:35 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:35 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:35 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:35 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:35 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:35 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:35 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:35 DEBUG opendrift.models.basemodel:1253: Data needed for 6667 elements
10:55:35 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:35 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 18:00:00 (before)
2023-08-22 19:00:00 (after)
10:55:35 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:35 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:35 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:35 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:35 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:35 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:35 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x31x6) for time after (2023-08-22 19:00:00)
10:55:35 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 18:00:00) in space (linearNDFast)
10:55:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:35 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 19:00:00) in space (linearNDFast)
10:55:35 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4548 elements, expanding data 1
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 220 elements, expanding data 2
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4548 elements, expanding data 1
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 220 elements, expanding data 2
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4719 elements, expanding data 1
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 890 elements, expanding data 2
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 210 elements, expanding data 3
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4719 elements, expanding data 1
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 890 elements, expanding data 2
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 210 elements, expanding data 3
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4719 elements, expanding data 1
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 890 elements, expanding data 2
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 210 elements, expanding data 3
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4719 elements, expanding data 1
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 890 elements, expanding data 2
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 210 elements, expanding data 3
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4719 elements, expanding data 1
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 890 elements, expanding data 2
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 210 elements, expanding data 3
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4719 elements, expanding data 1
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 890 elements, expanding data 2
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 210 elements, expanding data 3
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5716 elements, expanding data 1
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2321 elements, expanding data 2
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5716 elements, expanding data 1
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2321 elements, expanding data 2
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5716 elements, expanding data 1
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2321 elements, expanding data 2
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5716 elements, expanding data 1
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2321 elements, expanding data 2
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5716 elements, expanding data 1
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2321 elements, expanding data 2
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5716 elements, expanding data 1
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2321 elements, expanding data 2
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4548 elements, expanding data 1
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 220 elements, expanding data 2
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4548 elements, expanding data 1
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 220 elements, expanding data 2
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4548 elements, expanding data 1
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 220 elements, expanding data 2
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4548 elements, expanding data 1
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 220 elements, expanding data 2
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4548 elements, expanding data 1
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 220 elements, expanding data 2
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4548 elements, expanding data 1
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 220 elements, expanding data 2
10:55:35 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:35 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 18:00:00, weight 0.29) and
after (2023-08-22 19:00:00, weight 0.71) in time
10:55:35 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.17797814372948 and -58.95916378127504 degrees.
10:55:35 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.17797814372948 and -58.95916378127504 degrees.
10:55:35 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:35 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:35 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:36 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:36 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:36 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:36 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.847975 (min) 0.870542 (max)
10:55:36 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.959043 (min) 0.928852 (max)
10:55:36 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000295991 (min) 0.000391369 (max)
10:55:36 DEBUG opendrift.models.basemodel:1524: x_wind: -7.4554 (min) 7.77753 (max)
10:55:36 DEBUG opendrift.models.basemodel:1524: y_wind: -3.8436 (min) 10.1766 (max)
10:55:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:36 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:36 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:36 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:36 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 33.7185 (max)
10:55:36 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:36 DEBUG opendrift.models.basemodel:1527: 6667 active elements
10:55:36 DEBUG opendrift.models.basemodel:1538: 59.09504312913278 <- latitude -> 59.19001862978162
10:55:36 DEBUG opendrift.models.basemodel:1543: 10.822032424362108 <- longitude -> 11.040846760582717
10:55:36 DEBUG opendrift.models.basemodel:1548: -20.08321319231133 <- z -> 0.0
10:55:36 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:36 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:36 DEBUG opendrift.models.physics_methods:940: min: 0.059951, mean: 3.466360, max: 9.213392
10:55:36 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.059951, mean: 3.466360, max: 9.213392
10:55:36 DEBUG opendrift.models.basemodel:813: 1220 elements hit coastline, moving back to water
10:55:36 DEBUG opendrift.models.basemodel:836: Lifting 175 elements to seafloor.
10:55:36 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:36 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:36 DEBUG opendrift.models.physics_methods:741: Advecting 41 of 6667 elements above 0.100m with wind-sheared ocean current (0.009974 m/s - 0.149706 m/s)
10:55:36 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:36 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:36 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.1050408705292511
10:55:36 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:36 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:36 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:36 DEBUG opendrift.models.oceandrift:572: 796 elements penetrated seafloor, lifting up
10:55:36 DEBUG opendrift.models.oceandrift:590: 85 elements reached seafloor, set to bottom
10:55:36 DEBUG opendrift.models.basemodel:836: Lifting 85 elements to seafloor.
10:55:36 DEBUG opendrift.models.sedimentdrift:112: Settling 85 elements at seafloor
10:55:36 DEBUG opendrift.models.oceandrift:572: 607 elements penetrated seafloor, lifting up
10:55:36 DEBUG opendrift.models.oceandrift:590: 73 elements reached seafloor, set to bottom
10:55:36 DEBUG opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
10:55:36 DEBUG opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
10:55:36 DEBUG opendrift.models.oceandrift:572: 604 elements penetrated seafloor, lifting up
10:55:36 DEBUG opendrift.models.oceandrift:590: 73 elements reached seafloor, set to bottom
10:55:36 DEBUG opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
10:55:36 DEBUG opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
10:55:36 DEBUG opendrift.models.oceandrift:572: 545 elements penetrated seafloor, lifting up
10:55:36 DEBUG opendrift.models.oceandrift:590: 65 elements reached seafloor, set to bottom
10:55:36 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
10:55:36 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
10:55:36 DEBUG opendrift.models.oceandrift:572: 530 elements penetrated seafloor, lifting up
10:55:36 DEBUG opendrift.models.oceandrift:590: 79 elements reached seafloor, set to bottom
10:55:36 DEBUG opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
10:55:36 DEBUG opendrift.models.sedimentdrift:112: Settling 79 elements at seafloor
10:55:36 DEBUG opendrift.models.oceandrift:572: 487 elements penetrated seafloor, lifting up
10:55:36 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:55:36 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:55:36 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:55:36 DEBUG opendrift.models.oceandrift:572: 499 elements penetrated seafloor, lifting up
10:55:36 DEBUG opendrift.models.oceandrift:590: 71 elements reached seafloor, set to bottom
10:55:36 DEBUG opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
10:55:36 DEBUG opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
10:55:36 DEBUG opendrift.models.oceandrift:572: 514 elements penetrated seafloor, lifting up
10:55:36 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:55:36 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:55:36 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:55:36 DEBUG opendrift.models.oceandrift:572: 493 elements penetrated seafloor, lifting up
10:55:36 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:55:36 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:55:36 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:55:36 DEBUG opendrift.models.oceandrift:572: 476 elements penetrated seafloor, lifting up
10:55:36 DEBUG opendrift.models.oceandrift:590: 63 elements reached seafloor, set to bottom
10:55:36 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
10:55:36 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
10:55:36 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:36 DEBUG opendrift.models.basemodel:2945: 6667 active elements (0 deactivated)
10:55:36 DEBUG opendrift.models.basemodel:1658: to be seeded: 3333, already seeded 6667
10:55:36 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:55:36 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:36 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:36 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:36 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:36 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:36 DEBUG opendrift.models.basemodel:1253: Data needed for 6701 elements
10:55:36 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:36 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 18:00:00 (before)
2023-08-22 19:00:00 (after)
10:55:36 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 18:00:00) in space (linearNDFast)
10:55:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:36 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:36 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:36 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:36 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:36 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:36 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 32.6558 (max)
10:55:36 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:36 DEBUG opendrift.models.basemodel:1527: 6701 active elements
10:55:36 DEBUG opendrift.models.basemodel:1538: 59.095856050242915 <- latitude -> 59.19067541351842
10:55:36 DEBUG opendrift.models.basemodel:1543: 10.822561638787754 <- longitude -> 11.040401356273115
10:55:36 DEBUG opendrift.models.basemodel:1548: -20.84142668994946 <- z -> 0.0
10:55:36 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:36 DEBUG opendrift.models.basemodel:836: Lifting 474 elements to seafloor.
10:55:36 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:36 INFO opendrift.models.basemodel:2882: 2023-08-22 18:52:19.552469 - step 193 of 216 - 6701 active elements (0 deactivated)
10:55:36 DEBUG opendrift.models.basemodel:2888: 3299 elements scheduled.
10:55:36 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:36 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:36 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:36 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:36 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:36 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:36 DEBUG opendrift.models.basemodel:1253: Data needed for 6701 elements
10:55:36 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:36 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:36 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:36 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:36 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:36 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:36 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:36 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:36 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:36 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:36 DEBUG opendrift.models.basemodel:1253: Data needed for 6701 elements
10:55:36 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:36 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 18:00:00 (before)
2023-08-22 19:00:00 (after)
10:55:36 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:36 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:36 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:36 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:36 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:36 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:36 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x32x6) for time after (2023-08-22 19:00:00)
10:55:36 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 18:00:00) in space (linearNDFast)
10:55:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:36 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 19:00:00) in space (linearNDFast)
10:55:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4585 elements, expanding data 1
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4585 elements, expanding data 1
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4768 elements, expanding data 1
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 882 elements, expanding data 2
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 221 elements, expanding data 3
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4768 elements, expanding data 1
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 882 elements, expanding data 2
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 221 elements, expanding data 3
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4768 elements, expanding data 1
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 882 elements, expanding data 2
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 221 elements, expanding data 3
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4768 elements, expanding data 1
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 882 elements, expanding data 2
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 221 elements, expanding data 3
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4768 elements, expanding data 1
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 882 elements, expanding data 2
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 221 elements, expanding data 3
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4768 elements, expanding data 1
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 882 elements, expanding data 2
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 221 elements, expanding data 3
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5766 elements, expanding data 1
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2384 elements, expanding data 2
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5766 elements, expanding data 1
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2384 elements, expanding data 2
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5766 elements, expanding data 1
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2384 elements, expanding data 2
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5766 elements, expanding data 1
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2384 elements, expanding data 2
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5766 elements, expanding data 1
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2384 elements, expanding data 2
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5766 elements, expanding data 1
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2384 elements, expanding data 2
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4585 elements, expanding data 1
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4585 elements, expanding data 1
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4585 elements, expanding data 1
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4585 elements, expanding data 1
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4585 elements, expanding data 1
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4585 elements, expanding data 1
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 233 elements, expanding data 2
10:55:36 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:36 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 18:00:00, weight 0.13) and
after (2023-08-22 19:00:00, weight 0.87) in time
10:55:36 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.17744894241802 and -58.959609202146034 degrees.
10:55:36 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.17744894241802 and -58.959609202146034 degrees.
10:55:36 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:36 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:36 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:36 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:36 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:36 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:36 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.753466 (min) 0.83473 (max)
10:55:36 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.873961 (min) 1.01638 (max)
10:55:36 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.00028873 (min) 0.000424327 (max)
10:55:36 DEBUG opendrift.models.basemodel:1524: x_wind: -7.08919 (min) 7.72933 (max)
10:55:36 DEBUG opendrift.models.basemodel:1524: y_wind: -3.68613 (min) 10.9342 (max)
10:55:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:36 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:36 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:36 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:36 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:36 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 32.6558 (max)
10:55:36 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:36 DEBUG opendrift.models.basemodel:1527: 6701 active elements
10:55:36 DEBUG opendrift.models.basemodel:1538: 59.095856050242915 <- latitude -> 59.19067541351842
10:55:36 DEBUG opendrift.models.basemodel:1543: 10.822561638787754 <- longitude -> 11.040401356273115
10:55:36 DEBUG opendrift.models.basemodel:1548: -20.84142668994946 <- z -> 0.0
10:55:36 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:36 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:36 DEBUG opendrift.models.physics_methods:940: min: 0.029094, mean: 3.349707, max: 9.343010
10:55:36 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.029094, mean: 3.349707, max: 9.343010
10:55:36 DEBUG opendrift.models.basemodel:813: 1231 elements hit coastline, moving back to water
10:55:36 DEBUG opendrift.models.basemodel:836: Lifting 17 elements to seafloor.
10:55:36 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:36 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:36 DEBUG opendrift.models.physics_methods:741: Advecting 42 of 6701 elements above 0.100m with wind-sheared ocean current (0.001383 m/s - 0.136465 m/s)
10:55:36 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:36 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:36 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.10801706317480086
10:55:36 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:36 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:36 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:36 DEBUG opendrift.models.oceandrift:572: 801 elements penetrated seafloor, lifting up
10:55:36 DEBUG opendrift.models.oceandrift:590: 94 elements reached seafloor, set to bottom
10:55:36 DEBUG opendrift.models.basemodel:836: Lifting 94 elements to seafloor.
10:55:36 DEBUG opendrift.models.sedimentdrift:112: Settling 94 elements at seafloor
10:55:36 DEBUG opendrift.models.oceandrift:572: 589 elements penetrated seafloor, lifting up
10:55:36 DEBUG opendrift.models.oceandrift:590: 93 elements reached seafloor, set to bottom
10:55:36 DEBUG opendrift.models.basemodel:836: Lifting 93 elements to seafloor.
10:55:36 DEBUG opendrift.models.sedimentdrift:112: Settling 93 elements at seafloor
10:55:36 DEBUG opendrift.models.oceandrift:572: 554 elements penetrated seafloor, lifting up
10:55:36 DEBUG opendrift.models.oceandrift:590: 65 elements reached seafloor, set to bottom
10:55:36 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
10:55:36 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
10:55:36 DEBUG opendrift.models.oceandrift:572: 572 elements penetrated seafloor, lifting up
10:55:36 DEBUG opendrift.models.oceandrift:590: 81 elements reached seafloor, set to bottom
10:55:36 DEBUG opendrift.models.basemodel:836: Lifting 81 elements to seafloor.
10:55:36 DEBUG opendrift.models.sedimentdrift:112: Settling 81 elements at seafloor
10:55:36 DEBUG opendrift.models.oceandrift:572: 547 elements penetrated seafloor, lifting up
10:55:36 DEBUG opendrift.models.oceandrift:590: 63 elements reached seafloor, set to bottom
10:55:36 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
10:55:36 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
10:55:36 DEBUG opendrift.models.oceandrift:572: 491 elements penetrated seafloor, lifting up
10:55:36 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:55:36 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:55:36 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:55:36 DEBUG opendrift.models.oceandrift:572: 521 elements penetrated seafloor, lifting up
10:55:36 DEBUG opendrift.models.oceandrift:590: 78 elements reached seafloor, set to bottom
10:55:36 DEBUG opendrift.models.basemodel:836: Lifting 78 elements to seafloor.
10:55:36 DEBUG opendrift.models.sedimentdrift:112: Settling 78 elements at seafloor
10:55:36 DEBUG opendrift.models.oceandrift:572: 463 elements penetrated seafloor, lifting up
10:55:36 DEBUG opendrift.models.oceandrift:590: 69 elements reached seafloor, set to bottom
10:55:36 DEBUG opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
10:55:36 DEBUG opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
10:55:36 DEBUG opendrift.models.oceandrift:572: 472 elements penetrated seafloor, lifting up
10:55:36 DEBUG opendrift.models.oceandrift:590: 67 elements reached seafloor, set to bottom
10:55:36 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
10:55:36 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
10:55:36 DEBUG opendrift.models.oceandrift:572: 471 elements penetrated seafloor, lifting up
10:55:36 DEBUG opendrift.models.oceandrift:590: 69 elements reached seafloor, set to bottom
10:55:36 DEBUG opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
10:55:36 DEBUG opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
10:55:36 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:36 DEBUG opendrift.models.basemodel:2945: 6701 active elements (0 deactivated)
10:55:36 DEBUG opendrift.models.basemodel:1658: to be seeded: 3299, already seeded 6701
10:55:36 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:36 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:36 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:36 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:36 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:36 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:36 DEBUG opendrift.models.basemodel:1253: Data needed for 6736 elements
10:55:36 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:36 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 19:00:00 (before)
2023-08-22 20:00:00 (after)
10:55:36 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 19:00:00) in space (linearNDFast)
10:55:36 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:36 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:36 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:36 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:36 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:36 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:36 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 33.6541 (max)
10:55:36 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:36 DEBUG opendrift.models.basemodel:1527: 6736 active elements
10:55:36 DEBUG opendrift.models.basemodel:1538: 59.09614966350921 <- latitude -> 59.190358658248876
10:55:36 DEBUG opendrift.models.basemodel:1543: 10.818719439213059 <- longitude -> 11.040421123404073
10:55:36 DEBUG opendrift.models.basemodel:1548: -26.474834393382828 <- z -> 0.0
10:55:36 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:36 DEBUG opendrift.models.basemodel:836: Lifting 496 elements to seafloor.
10:55:36 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:36 INFO opendrift.models.basemodel:2882: 2023-08-22 19:02:19.552469 - step 194 of 216 - 6736 active elements (0 deactivated)
10:55:36 DEBUG opendrift.models.basemodel:2888: 3264 elements scheduled.
10:55:36 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:36 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:36 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:36 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:37 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:37 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:37 DEBUG opendrift.models.basemodel:1253: Data needed for 6736 elements
10:55:37 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:37 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:37 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:37 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:37 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:37 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:37 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:37 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:37 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:37 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:37 DEBUG opendrift.models.basemodel:1253: Data needed for 6736 elements
10:55:37 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:37 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 19:00:00 (before)
2023-08-22 20:00:00 (after)
10:55:38 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:38 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:38 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:38 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:38 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:38 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:38 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 27x32x7) for time after (2023-08-22 20:00:00)
10:55:38 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 19:00:00) in space (linearNDFast)
10:55:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:38 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 20:00:00) in space (linearNDFast)
10:55:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4595 elements, expanding data 1
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 236 elements, expanding data 2
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4595 elements, expanding data 1
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 236 elements, expanding data 2
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4774 elements, expanding data 1
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 895 elements, expanding data 2
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 224 elements, expanding data 3
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4774 elements, expanding data 1
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 895 elements, expanding data 2
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 224 elements, expanding data 3
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4774 elements, expanding data 1
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 895 elements, expanding data 2
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 224 elements, expanding data 3
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4774 elements, expanding data 1
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 895 elements, expanding data 2
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 224 elements, expanding data 3
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4774 elements, expanding data 1
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 895 elements, expanding data 2
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 224 elements, expanding data 3
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4774 elements, expanding data 1
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 895 elements, expanding data 2
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 224 elements, expanding data 3
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4774 elements, expanding data 1
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 895 elements, expanding data 2
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 224 elements, expanding data 3
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5804 elements, expanding data 1
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2354 elements, expanding data 2
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5804 elements, expanding data 1
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2354 elements, expanding data 2
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5804 elements, expanding data 1
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2354 elements, expanding data 2
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5804 elements, expanding data 1
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2354 elements, expanding data 2
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5804 elements, expanding data 1
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2354 elements, expanding data 2
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5804 elements, expanding data 1
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2354 elements, expanding data 2
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5804 elements, expanding data 1
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2354 elements, expanding data 2
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4595 elements, expanding data 1
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 236 elements, expanding data 2
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4595 elements, expanding data 1
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 236 elements, expanding data 2
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4595 elements, expanding data 1
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 236 elements, expanding data 2
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4595 elements, expanding data 1
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 236 elements, expanding data 2
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4595 elements, expanding data 1
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 236 elements, expanding data 2
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4595 elements, expanding data 1
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 236 elements, expanding data 2
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4595 elements, expanding data 1
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 236 elements, expanding data 2
10:55:38 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:38 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 19:00:00, weight 0.96) and
after (2023-08-22 20:00:00, weight 0.04) in time
10:55:38 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.18129113750325 and -58.95958942079418 degrees.
10:55:38 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.18129113750325 and -58.95958942079418 degrees.
10:55:38 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:38 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:38 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:38 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:38 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:38 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:38 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.73649 (min) 0.945324 (max)
10:55:38 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.831692 (min) 0.840386 (max)
10:55:38 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000339862 (min) 0.000421943 (max)
10:55:38 DEBUG opendrift.models.basemodel:1524: x_wind: -8.12682 (min) 7.60177 (max)
10:55:38 DEBUG opendrift.models.basemodel:1524: y_wind: -4.00063 (min) 10.7795 (max)
10:55:38 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:38 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:38 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:38 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:38 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:38 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:38 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:38 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 33.6541 (max)
10:55:38 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:38 DEBUG opendrift.models.basemodel:1527: 6736 active elements
10:55:38 DEBUG opendrift.models.basemodel:1538: 59.09614966350921 <- latitude -> 59.190358658248876
10:55:38 DEBUG opendrift.models.basemodel:1543: 10.818719439213059 <- longitude -> 11.040421123404073
10:55:38 DEBUG opendrift.models.basemodel:1548: -26.474834393382828 <- z -> 0.0
10:55:38 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:38 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:38 DEBUG opendrift.models.physics_methods:940: min: 0.033888, mean: 3.289610, max: 9.424636
10:55:38 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.033888, mean: 3.289610, max: 9.424636
10:55:38 DEBUG opendrift.models.basemodel:813: 1201 elements hit coastline, moving back to water
10:55:38 DEBUG opendrift.models.basemodel:836: Lifting 143 elements to seafloor.
10:55:38 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:38 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:38 DEBUG opendrift.models.physics_methods:741: Advecting 44 of 6736 elements above 0.100m with wind-sheared ocean current (0.001620 m/s - 0.147348 m/s)
10:55:38 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:38 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:38 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.10991264991147995
10:55:38 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:38 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:38 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:38 DEBUG opendrift.models.oceandrift:572: 793 elements penetrated seafloor, lifting up
10:55:38 DEBUG opendrift.models.oceandrift:590: 98 elements reached seafloor, set to bottom
10:55:38 DEBUG opendrift.models.basemodel:836: Lifting 98 elements to seafloor.
10:55:38 DEBUG opendrift.models.sedimentdrift:112: Settling 98 elements at seafloor
10:55:38 DEBUG opendrift.models.oceandrift:572: 575 elements penetrated seafloor, lifting up
10:55:38 DEBUG opendrift.models.oceandrift:590: 82 elements reached seafloor, set to bottom
10:55:38 DEBUG opendrift.models.basemodel:836: Lifting 82 elements to seafloor.
10:55:38 DEBUG opendrift.models.sedimentdrift:112: Settling 82 elements at seafloor
10:55:38 DEBUG opendrift.models.oceandrift:572: 579 elements penetrated seafloor, lifting up
10:55:38 DEBUG opendrift.models.oceandrift:590: 91 elements reached seafloor, set to bottom
10:55:38 DEBUG opendrift.models.basemodel:836: Lifting 91 elements to seafloor.
10:55:38 DEBUG opendrift.models.sedimentdrift:112: Settling 91 elements at seafloor
10:55:38 DEBUG opendrift.models.oceandrift:572: 507 elements penetrated seafloor, lifting up
10:55:38 DEBUG opendrift.models.oceandrift:590: 87 elements reached seafloor, set to bottom
10:55:38 DEBUG opendrift.models.basemodel:836: Lifting 87 elements to seafloor.
10:55:38 DEBUG opendrift.models.sedimentdrift:112: Settling 87 elements at seafloor
10:55:38 DEBUG opendrift.models.oceandrift:572: 476 elements penetrated seafloor, lifting up
10:55:38 DEBUG opendrift.models.oceandrift:590: 70 elements reached seafloor, set to bottom
10:55:38 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
10:55:38 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
10:55:38 DEBUG opendrift.models.oceandrift:572: 507 elements penetrated seafloor, lifting up
10:55:38 DEBUG opendrift.models.oceandrift:590: 64 elements reached seafloor, set to bottom
10:55:38 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
10:55:38 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
10:55:38 DEBUG opendrift.models.oceandrift:572: 520 elements penetrated seafloor, lifting up
10:55:38 DEBUG opendrift.models.oceandrift:590: 60 elements reached seafloor, set to bottom
10:55:38 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
10:55:38 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
10:55:38 DEBUG opendrift.models.oceandrift:572: 470 elements penetrated seafloor, lifting up
10:55:38 DEBUG opendrift.models.oceandrift:590: 62 elements reached seafloor, set to bottom
10:55:38 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
10:55:38 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
10:55:38 DEBUG opendrift.models.oceandrift:572: 437 elements penetrated seafloor, lifting up
10:55:38 DEBUG opendrift.models.oceandrift:590: 57 elements reached seafloor, set to bottom
10:55:38 DEBUG opendrift.models.basemodel:836: Lifting 57 elements to seafloor.
10:55:38 DEBUG opendrift.models.sedimentdrift:112: Settling 57 elements at seafloor
10:55:38 DEBUG opendrift.models.oceandrift:572: 459 elements penetrated seafloor, lifting up
10:55:38 DEBUG opendrift.models.oceandrift:590: 48 elements reached seafloor, set to bottom
10:55:38 DEBUG opendrift.models.basemodel:836: Lifting 48 elements to seafloor.
10:55:38 DEBUG opendrift.models.sedimentdrift:112: Settling 48 elements at seafloor
10:55:38 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:38 DEBUG opendrift.models.basemodel:2945: 6736 active elements (0 deactivated)
10:55:38 DEBUG opendrift.models.basemodel:1658: to be seeded: 3264, already seeded 6736
10:55:38 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:38 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:38 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:38 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:38 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:38 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:38 DEBUG opendrift.models.basemodel:1253: Data needed for 6771 elements
10:55:38 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:38 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 19:00:00 (before)
2023-08-22 20:00:00 (after)
10:55:38 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 19:00:00) in space (linearNDFast)
10:55:38 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:38 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:38 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:38 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:38 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:38 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:38 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 34.4095 (max)
10:55:38 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:38 DEBUG opendrift.models.basemodel:1527: 6771 active elements
10:55:38 DEBUG opendrift.models.basemodel:1538: 59.09562644877179 <- latitude -> 59.19066355294522
10:55:38 DEBUG opendrift.models.basemodel:1543: 10.816442832757986 <- longitude -> 11.041731331281612
10:55:38 DEBUG opendrift.models.basemodel:1548: -26.54274709443994 <- z -> 0.0
10:55:38 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:38 DEBUG opendrift.models.basemodel:836: Lifting 485 elements to seafloor.
10:55:38 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:38 INFO opendrift.models.basemodel:2882: 2023-08-22 19:12:19.552469 - step 195 of 216 - 6771 active elements (0 deactivated)
10:55:38 DEBUG opendrift.models.basemodel:2888: 3229 elements scheduled.
10:55:38 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:38 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:38 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:38 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:38 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:38 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:38 DEBUG opendrift.models.basemodel:1253: Data needed for 6771 elements
10:55:38 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:38 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:38 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:38 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:38 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:38 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:38 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:38 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:38 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:38 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:38 DEBUG opendrift.models.basemodel:1253: Data needed for 6771 elements
10:55:38 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:38 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 19:00:00 (before)
2023-08-22 20:00:00 (after)
10:55:39 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:39 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:39 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:39 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:39 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:39 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:39 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x32x7) for time after (2023-08-22 20:00:00)
10:55:39 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 19:00:00) in space (linearNDFast)
10:55:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:39 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 20:00:00) in space (linearNDFast)
10:55:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4630 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4630 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4789 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 902 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 232 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4789 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 902 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 232 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4789 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 902 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 232 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4789 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 902 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 232 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4789 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 902 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 232 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4789 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 902 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 232 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4789 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 902 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 232 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5863 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2408 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5863 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2408 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5863 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2408 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5863 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2408 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5863 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2408 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5863 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2408 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5863 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2408 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4630 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4630 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4630 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4630 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4630 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4630 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4630 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 242 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:39 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 19:00:00, weight 0.79) and
after (2023-08-22 20:00:00, weight 0.21) in time
10:55:39 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.183567732247546 and -58.95827922116826 degrees.
10:55:39 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.183567732247546 and -58.95827922116826 degrees.
10:55:39 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:39 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:39 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:39 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:39 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:39 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:39 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.782031 (min) 1.07884 (max)
10:55:39 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.99629 (min) 0.815561 (max)
10:55:39 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000273254 (min) 0.000393463 (max)
10:55:39 DEBUG opendrift.models.basemodel:1524: x_wind: -6.85848 (min) 8.81449 (max)
10:55:39 DEBUG opendrift.models.basemodel:1524: y_wind: -3.48692 (min) 10.638 (max)
10:55:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:39 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:39 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:39 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:39 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:39 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 34.4095 (max)
10:55:39 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:39 DEBUG opendrift.models.basemodel:1527: 6771 active elements
10:55:39 DEBUG opendrift.models.basemodel:1538: 59.09562644877179 <- latitude -> 59.19066355294522
10:55:39 DEBUG opendrift.models.basemodel:1543: 10.816442832757986 <- longitude -> 11.041731331281612
10:55:39 DEBUG opendrift.models.basemodel:1548: -26.54274709443994 <- z -> 0.0
10:55:39 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:39 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:39 DEBUG opendrift.models.physics_methods:940: min: 0.065695, mean: 3.266736, max: 9.351383
10:55:39 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.065695, mean: 3.266736, max: 9.351383
10:55:39 DEBUG opendrift.models.basemodel:813: 1182 elements hit coastline, moving back to water
10:55:39 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:55:39 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:39 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:39 DEBUG opendrift.models.physics_methods:741: Advecting 46 of 6771 elements above 0.100m with wind-sheared ocean current (0.000844 m/s - 0.145905 m/s)
10:55:39 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:39 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:39 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.10821076909549712
10:55:39 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:39 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:39 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:39 DEBUG opendrift.models.oceandrift:572: 797 elements penetrated seafloor, lifting up
10:55:39 DEBUG opendrift.models.oceandrift:590: 91 elements reached seafloor, set to bottom
10:55:39 DEBUG opendrift.models.basemodel:836: Lifting 91 elements to seafloor.
10:55:39 DEBUG opendrift.models.sedimentdrift:112: Settling 91 elements at seafloor
10:55:39 DEBUG opendrift.models.oceandrift:572: 664 elements penetrated seafloor, lifting up
10:55:39 DEBUG opendrift.models.oceandrift:590: 97 elements reached seafloor, set to bottom
10:55:39 DEBUG opendrift.models.basemodel:836: Lifting 97 elements to seafloor.
10:55:39 DEBUG opendrift.models.sedimentdrift:112: Settling 97 elements at seafloor
10:55:39 DEBUG opendrift.models.oceandrift:572: 576 elements penetrated seafloor, lifting up
10:55:39 DEBUG opendrift.models.oceandrift:590: 70 elements reached seafloor, set to bottom
10:55:39 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
10:55:39 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
10:55:39 DEBUG opendrift.models.oceandrift:572: 522 elements penetrated seafloor, lifting up
10:55:39 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:55:39 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:55:39 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:55:39 DEBUG opendrift.models.oceandrift:572: 507 elements penetrated seafloor, lifting up
10:55:39 DEBUG opendrift.models.oceandrift:590: 72 elements reached seafloor, set to bottom
10:55:39 DEBUG opendrift.models.basemodel:836: Lifting 72 elements to seafloor.
10:55:39 DEBUG opendrift.models.sedimentdrift:112: Settling 72 elements at seafloor
10:55:39 DEBUG opendrift.models.oceandrift:572: 509 elements penetrated seafloor, lifting up
10:55:39 DEBUG opendrift.models.oceandrift:590: 81 elements reached seafloor, set to bottom
10:55:39 DEBUG opendrift.models.basemodel:836: Lifting 81 elements to seafloor.
10:55:39 DEBUG opendrift.models.sedimentdrift:112: Settling 81 elements at seafloor
10:55:39 DEBUG opendrift.models.oceandrift:572: 487 elements penetrated seafloor, lifting up
10:55:39 DEBUG opendrift.models.oceandrift:590: 70 elements reached seafloor, set to bottom
10:55:39 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
10:55:39 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
10:55:39 DEBUG opendrift.models.oceandrift:572: 469 elements penetrated seafloor, lifting up
10:55:39 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:55:39 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:55:39 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:55:39 DEBUG opendrift.models.oceandrift:572: 493 elements penetrated seafloor, lifting up
10:55:39 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:55:39 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:55:39 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:55:39 DEBUG opendrift.models.oceandrift:572: 447 elements penetrated seafloor, lifting up
10:55:39 DEBUG opendrift.models.oceandrift:590: 67 elements reached seafloor, set to bottom
10:55:39 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
10:55:39 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
10:55:39 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:39 DEBUG opendrift.models.basemodel:2945: 6771 active elements (0 deactivated)
10:55:39 DEBUG opendrift.models.basemodel:1658: to be seeded: 3229, already seeded 6771
10:55:39 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:55:39 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:39 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:39 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:39 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:39 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:39 DEBUG opendrift.models.basemodel:1253: Data needed for 6805 elements
10:55:39 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:39 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 19:00:00 (before)
2023-08-22 20:00:00 (after)
10:55:39 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 19:00:00) in space (linearNDFast)
10:55:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:39 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:39 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:39 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:39 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:39 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:39 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 37.749 (max)
10:55:39 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:39 DEBUG opendrift.models.basemodel:1527: 6805 active elements
10:55:39 DEBUG opendrift.models.basemodel:1538: 59.09424134448196 <- latitude -> 59.190719974016815
10:55:39 DEBUG opendrift.models.basemodel:1543: 10.815933969944703 <- longitude -> 11.041561198974783
10:55:39 DEBUG opendrift.models.basemodel:1548: -27.600754051936736 <- z -> 0.0
10:55:39 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:39 DEBUG opendrift.models.basemodel:836: Lifting 517 elements to seafloor.
10:55:39 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:39 INFO opendrift.models.basemodel:2882: 2023-08-22 19:22:19.552469 - step 196 of 216 - 6805 active elements (0 deactivated)
10:55:39 DEBUG opendrift.models.basemodel:2888: 3195 elements scheduled.
10:55:39 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:39 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:39 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:39 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:39 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:39 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:39 DEBUG opendrift.models.basemodel:1253: Data needed for 6805 elements
10:55:39 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:39 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:39 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:39 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:39 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:39 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:39 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:39 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:39 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:39 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:39 DEBUG opendrift.models.basemodel:1253: Data needed for 6805 elements
10:55:39 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:39 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 19:00:00 (before)
2023-08-22 20:00:00 (after)
10:55:39 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:39 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:39 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:39 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:39 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:39 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:39 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x32x7) for time after (2023-08-22 20:00:00)
10:55:39 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 19:00:00) in space (linearNDFast)
10:55:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:39 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 20:00:00) in space (linearNDFast)
10:55:39 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4683 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 234 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4683 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 234 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4856 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 912 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 222 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4856 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 912 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 222 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4856 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 912 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 222 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4856 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 912 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 222 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4856 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 912 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 222 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4856 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 912 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 222 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4856 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 912 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 222 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5886 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2439 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5886 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2439 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5886 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2439 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5886 elements, expanding data 1
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2439 elements, expanding data 2
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:39 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5886 elements, expanding data 1
10:55:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2439 elements, expanding data 2
10:55:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5886 elements, expanding data 1
10:55:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2439 elements, expanding data 2
10:55:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5886 elements, expanding data 1
10:55:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2439 elements, expanding data 2
10:55:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4683 elements, expanding data 1
10:55:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 234 elements, expanding data 2
10:55:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4683 elements, expanding data 1
10:55:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 234 elements, expanding data 2
10:55:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4683 elements, expanding data 1
10:55:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 234 elements, expanding data 2
10:55:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4683 elements, expanding data 1
10:55:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 234 elements, expanding data 2
10:55:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4683 elements, expanding data 1
10:55:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 234 elements, expanding data 2
10:55:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4683 elements, expanding data 1
10:55:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 234 elements, expanding data 2
10:55:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4683 elements, expanding data 1
10:55:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 234 elements, expanding data 2
10:55:40 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:40 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 19:00:00, weight 0.63) and
after (2023-08-22 20:00:00, weight 0.37) in time
10:55:40 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.18407660624223 and -58.958449336398296 degrees.
10:55:40 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.18407660624223 and -58.958449336398296 degrees.
10:55:40 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:40 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:40 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:40 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:40 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:40 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:40 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.798066 (min) 1.07994 (max)
10:55:40 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.870281 (min) 0.748153 (max)
10:55:40 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000310444 (min) 0.000447349 (max)
10:55:40 DEBUG opendrift.models.basemodel:1524: x_wind: -7.18404 (min) 7.19756 (max)
10:55:40 DEBUG opendrift.models.basemodel:1524: y_wind: -4.62629 (min) 11.768 (max)
10:55:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:40 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:40 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:40 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:40 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:40 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 37.749 (max)
10:55:40 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:40 DEBUG opendrift.models.basemodel:1527: 6805 active elements
10:55:40 DEBUG opendrift.models.basemodel:1538: 59.09424134448196 <- latitude -> 59.190719974016815
10:55:40 DEBUG opendrift.models.basemodel:1543: 10.815933969944703 <- longitude -> 11.041561198974783
10:55:40 DEBUG opendrift.models.basemodel:1548: -27.600754051936736 <- z -> 0.0
10:55:40 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:40 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:40 DEBUG opendrift.models.physics_methods:940: min: 0.031501, mean: 3.278916, max: 11.352022
10:55:40 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.031501, mean: 3.278916, max: 11.352022
10:55:40 DEBUG opendrift.models.basemodel:813: 1241 elements hit coastline, moving back to water
10:55:40 DEBUG opendrift.models.basemodel:836: Lifting 38 elements to seafloor.
10:55:40 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:40 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:40 DEBUG opendrift.models.physics_methods:741: Advecting 40 of 6805 elements above 0.100m with wind-sheared ocean current (0.001701 m/s - 0.142824 m/s)
10:55:40 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:40 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:40 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.15946300931270596
10:55:40 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:40 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:40 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:40 DEBUG opendrift.models.oceandrift:572: 845 elements penetrated seafloor, lifting up
10:55:40 DEBUG opendrift.models.oceandrift:590: 107 elements reached seafloor, set to bottom
10:55:40 DEBUG opendrift.models.basemodel:836: Lifting 107 elements to seafloor.
10:55:40 DEBUG opendrift.models.sedimentdrift:112: Settling 107 elements at seafloor
10:55:40 DEBUG opendrift.models.oceandrift:572: 625 elements penetrated seafloor, lifting up
10:55:40 DEBUG opendrift.models.oceandrift:590: 101 elements reached seafloor, set to bottom
10:55:40 DEBUG opendrift.models.basemodel:836: Lifting 101 elements to seafloor.
10:55:40 DEBUG opendrift.models.sedimentdrift:112: Settling 101 elements at seafloor
10:55:40 DEBUG opendrift.models.oceandrift:572: 529 elements penetrated seafloor, lifting up
10:55:40 DEBUG opendrift.models.oceandrift:590: 63 elements reached seafloor, set to bottom
10:55:40 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
10:55:40 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
10:55:40 DEBUG opendrift.models.oceandrift:572: 529 elements penetrated seafloor, lifting up
10:55:40 DEBUG opendrift.models.oceandrift:590: 72 elements reached seafloor, set to bottom
10:55:40 DEBUG opendrift.models.basemodel:836: Lifting 72 elements to seafloor.
10:55:40 DEBUG opendrift.models.sedimentdrift:112: Settling 72 elements at seafloor
10:55:40 DEBUG opendrift.models.oceandrift:572: 520 elements penetrated seafloor, lifting up
10:55:40 DEBUG opendrift.models.oceandrift:590: 69 elements reached seafloor, set to bottom
10:55:40 DEBUG opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
10:55:40 DEBUG opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
10:55:40 DEBUG opendrift.models.oceandrift:572: 532 elements penetrated seafloor, lifting up
10:55:40 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:55:40 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:55:40 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:55:40 DEBUG opendrift.models.oceandrift:572: 479 elements penetrated seafloor, lifting up
10:55:40 DEBUG opendrift.models.oceandrift:590: 86 elements reached seafloor, set to bottom
10:55:40 DEBUG opendrift.models.basemodel:836: Lifting 86 elements to seafloor.
10:55:40 DEBUG opendrift.models.sedimentdrift:112: Settling 86 elements at seafloor
10:55:40 DEBUG opendrift.models.oceandrift:572: 515 elements penetrated seafloor, lifting up
10:55:40 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:55:40 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:55:40 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:55:40 DEBUG opendrift.models.oceandrift:572: 504 elements penetrated seafloor, lifting up
10:55:40 DEBUG opendrift.models.oceandrift:590: 60 elements reached seafloor, set to bottom
10:55:40 DEBUG opendrift.models.basemodel:836: Lifting 60 elements to seafloor.
10:55:40 DEBUG opendrift.models.sedimentdrift:112: Settling 60 elements at seafloor
10:55:40 DEBUG opendrift.models.oceandrift:572: 485 elements penetrated seafloor, lifting up
10:55:40 DEBUG opendrift.models.oceandrift:590: 66 elements reached seafloor, set to bottom
10:55:40 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
10:55:40 DEBUG opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
10:55:40 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:40 DEBUG opendrift.models.basemodel:2945: 6805 active elements (0 deactivated)
10:55:40 DEBUG opendrift.models.basemodel:1658: to be seeded: 3195, already seeded 6805
10:55:40 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:40 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:40 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:40 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:40 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:40 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:40 DEBUG opendrift.models.basemodel:1253: Data needed for 6840 elements
10:55:40 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:40 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 19:00:00 (before)
2023-08-22 20:00:00 (after)
10:55:40 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 19:00:00) in space (linearNDFast)
10:55:40 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:40 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:40 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:40 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:40 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:40 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:40 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 37.58 (max)
10:55:40 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:40 DEBUG opendrift.models.basemodel:1527: 6840 active elements
10:55:40 DEBUG opendrift.models.basemodel:1538: 59.09391021841846 <- latitude -> 59.1901921526311
10:55:40 DEBUG opendrift.models.basemodel:1543: 10.81687529898308 <- longitude -> 11.04070928171546
10:55:40 DEBUG opendrift.models.basemodel:1548: -32.04191856357127 <- z -> 0.0
10:55:40 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:40 DEBUG opendrift.models.basemodel:836: Lifting 536 elements to seafloor.
10:55:40 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:40 INFO opendrift.models.basemodel:2882: 2023-08-22 19:32:19.552469 - step 197 of 216 - 6840 active elements (0 deactivated)
10:55:40 DEBUG opendrift.models.basemodel:2888: 3160 elements scheduled.
10:55:40 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:40 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:40 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:40 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:40 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:40 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:40 DEBUG opendrift.models.basemodel:1253: Data needed for 6840 elements
10:55:40 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:40 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:40 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:40 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:40 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:40 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:40 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:40 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:40 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:40 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:40 DEBUG opendrift.models.basemodel:1253: Data needed for 6840 elements
10:55:40 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:40 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 19:00:00 (before)
2023-08-22 20:00:00 (after)
10:55:41 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:41 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:41 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:41 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:41 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:41 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:41 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x32x7) for time after (2023-08-22 20:00:00)
10:55:41 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 19:00:00) in space (linearNDFast)
10:55:41 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:41 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 20:00:00) in space (linearNDFast)
10:55:41 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4704 elements, expanding data 1
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 2
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4704 elements, expanding data 1
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 2
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4882 elements, expanding data 1
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 894 elements, expanding data 2
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 3
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4882 elements, expanding data 1
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 894 elements, expanding data 2
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 3
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4882 elements, expanding data 1
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 894 elements, expanding data 2
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 3
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4882 elements, expanding data 1
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 894 elements, expanding data 2
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 3
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4882 elements, expanding data 1
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 894 elements, expanding data 2
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 3
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4882 elements, expanding data 1
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 894 elements, expanding data 2
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 3
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4882 elements, expanding data 1
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 894 elements, expanding data 2
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 3
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5911 elements, expanding data 1
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2480 elements, expanding data 2
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5911 elements, expanding data 1
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2480 elements, expanding data 2
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5911 elements, expanding data 1
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2480 elements, expanding data 2
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5911 elements, expanding data 1
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2480 elements, expanding data 2
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5911 elements, expanding data 1
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2480 elements, expanding data 2
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5911 elements, expanding data 1
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2480 elements, expanding data 2
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5911 elements, expanding data 1
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2480 elements, expanding data 2
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4704 elements, expanding data 1
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 2
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4704 elements, expanding data 1
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 2
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4704 elements, expanding data 1
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 2
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4704 elements, expanding data 1
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 2
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4704 elements, expanding data 1
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 2
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4704 elements, expanding data 1
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 2
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4704 elements, expanding data 1
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 2
10:55:41 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:41 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 19:00:00, weight 0.46) and
after (2023-08-22 20:00:00, weight 0.54) in time
10:55:41 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.183135275950676 and -58.95930127236681 degrees.
10:55:41 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.183135275950676 and -58.95930127236681 degrees.
10:55:41 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:41 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:41 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:41 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:41 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:41 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:41 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.793919 (min) 1.13221 (max)
10:55:41 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.08005 (min) 0.794034 (max)
10:55:41 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000274449 (min) 0.00051939 (max)
10:55:41 DEBUG opendrift.models.basemodel:1524: x_wind: -7.76032 (min) 7.55254 (max)
10:55:41 DEBUG opendrift.models.basemodel:1524: y_wind: -4.10281 (min) 10.1765 (max)
10:55:41 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:41 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:41 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:41 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:41 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:41 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:41 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:41 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 37.58 (max)
10:55:41 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:41 DEBUG opendrift.models.basemodel:1527: 6840 active elements
10:55:41 DEBUG opendrift.models.basemodel:1538: 59.09391021841846 <- latitude -> 59.1901921526311
10:55:41 DEBUG opendrift.models.basemodel:1543: 10.81687529898308 <- longitude -> 11.04070928171546
10:55:41 DEBUG opendrift.models.basemodel:1548: -32.04191856357127 <- z -> 0.0
10:55:41 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:41 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:41 DEBUG opendrift.models.physics_methods:940: min: 0.040325, mean: 3.231854, max: 8.978525
10:55:41 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.040325, mean: 3.231854, max: 8.978525
10:55:41 DEBUG opendrift.models.basemodel:813: 1247 elements hit coastline, moving back to water
10:55:41 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:55:41 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:41 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:41 DEBUG opendrift.models.physics_methods:741: Advecting 35 of 6840 elements above 0.100m with wind-sheared ocean current (0.009786 m/s - 0.198417 m/s)
10:55:41 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:41 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:41 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.0997539515429306
10:55:41 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:41 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:41 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:41 DEBUG opendrift.models.oceandrift:572: 798 elements penetrated seafloor, lifting up
10:55:41 DEBUG opendrift.models.oceandrift:590: 86 elements reached seafloor, set to bottom
10:55:41 DEBUG opendrift.models.basemodel:836: Lifting 86 elements to seafloor.
10:55:41 DEBUG opendrift.models.sedimentdrift:112: Settling 86 elements at seafloor
10:55:41 DEBUG opendrift.models.oceandrift:572: 620 elements penetrated seafloor, lifting up
10:55:41 DEBUG opendrift.models.oceandrift:590: 96 elements reached seafloor, set to bottom
10:55:41 DEBUG opendrift.models.basemodel:836: Lifting 96 elements to seafloor.
10:55:41 DEBUG opendrift.models.sedimentdrift:112: Settling 96 elements at seafloor
10:55:41 DEBUG opendrift.models.oceandrift:572: 602 elements penetrated seafloor, lifting up
10:55:41 DEBUG opendrift.models.oceandrift:590: 70 elements reached seafloor, set to bottom
10:55:41 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
10:55:41 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
10:55:41 DEBUG opendrift.models.oceandrift:572: 554 elements penetrated seafloor, lifting up
10:55:41 DEBUG opendrift.models.oceandrift:590: 83 elements reached seafloor, set to bottom
10:55:41 DEBUG opendrift.models.basemodel:836: Lifting 83 elements to seafloor.
10:55:41 DEBUG opendrift.models.sedimentdrift:112: Settling 83 elements at seafloor
10:55:41 DEBUG opendrift.models.oceandrift:572: 555 elements penetrated seafloor, lifting up
10:55:41 DEBUG opendrift.models.oceandrift:590: 75 elements reached seafloor, set to bottom
10:55:41 DEBUG opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
10:55:41 DEBUG opendrift.models.sedimentdrift:112: Settling 75 elements at seafloor
10:55:41 DEBUG opendrift.models.oceandrift:572: 511 elements penetrated seafloor, lifting up
10:55:41 DEBUG opendrift.models.oceandrift:590: 81 elements reached seafloor, set to bottom
10:55:41 DEBUG opendrift.models.basemodel:836: Lifting 81 elements to seafloor.
10:55:41 DEBUG opendrift.models.sedimentdrift:112: Settling 81 elements at seafloor
10:55:41 DEBUG opendrift.models.oceandrift:572: 459 elements penetrated seafloor, lifting up
10:55:41 DEBUG opendrift.models.oceandrift:590: 67 elements reached seafloor, set to bottom
10:55:41 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
10:55:41 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
10:55:41 DEBUG opendrift.models.oceandrift:572: 521 elements penetrated seafloor, lifting up
10:55:41 DEBUG opendrift.models.oceandrift:590: 91 elements reached seafloor, set to bottom
10:55:41 DEBUG opendrift.models.basemodel:836: Lifting 91 elements to seafloor.
10:55:41 DEBUG opendrift.models.sedimentdrift:112: Settling 91 elements at seafloor
10:55:41 DEBUG opendrift.models.oceandrift:572: 509 elements penetrated seafloor, lifting up
10:55:41 DEBUG opendrift.models.oceandrift:590: 79 elements reached seafloor, set to bottom
10:55:41 DEBUG opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
10:55:41 DEBUG opendrift.models.sedimentdrift:112: Settling 79 elements at seafloor
10:55:41 DEBUG opendrift.models.oceandrift:572: 480 elements penetrated seafloor, lifting up
10:55:41 DEBUG opendrift.models.oceandrift:590: 55 elements reached seafloor, set to bottom
10:55:41 DEBUG opendrift.models.basemodel:836: Lifting 55 elements to seafloor.
10:55:41 DEBUG opendrift.models.sedimentdrift:112: Settling 55 elements at seafloor
10:55:41 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:41 DEBUG opendrift.models.basemodel:2945: 6840 active elements (0 deactivated)
10:55:41 DEBUG opendrift.models.basemodel:1658: to be seeded: 3160, already seeded 6840
10:55:41 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:41 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:41 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:41 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:41 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:41 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:41 DEBUG opendrift.models.basemodel:1253: Data needed for 6875 elements
10:55:41 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:41 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 19:00:00 (before)
2023-08-22 20:00:00 (after)
10:55:41 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 19:00:00) in space (linearNDFast)
10:55:41 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:41 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:41 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:41 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:41 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:41 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:41 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 35.6221 (max)
10:55:41 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:41 DEBUG opendrift.models.basemodel:1527: 6875 active elements
10:55:41 DEBUG opendrift.models.basemodel:1538: 59.09488302775219 <- latitude -> 59.19055486036166
10:55:41 DEBUG opendrift.models.basemodel:1543: 10.819197615104626 <- longitude -> 11.03982883630776
10:55:41 DEBUG opendrift.models.basemodel:1548: -31.054311196628547 <- z -> 0.0
10:55:41 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:41 DEBUG opendrift.models.basemodel:836: Lifting 543 elements to seafloor.
10:55:41 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:41 INFO opendrift.models.basemodel:2882: 2023-08-22 19:42:19.552469 - step 198 of 216 - 6875 active elements (0 deactivated)
10:55:41 DEBUG opendrift.models.basemodel:2888: 3125 elements scheduled.
10:55:41 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:41 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:41 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:41 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:41 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:41 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:41 DEBUG opendrift.models.basemodel:1253: Data needed for 6875 elements
10:55:41 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:41 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:41 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:41 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:41 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:41 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:41 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:41 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:41 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:41 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:41 DEBUG opendrift.models.basemodel:1253: Data needed for 6875 elements
10:55:41 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:41 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 19:00:00 (before)
2023-08-22 20:00:00 (after)
10:55:41 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:41 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:41 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:41 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:41 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:41 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:41 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x32x7) for time after (2023-08-22 20:00:00)
10:55:41 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 19:00:00) in space (linearNDFast)
10:55:41 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:42 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 20:00:00) in space (linearNDFast)
10:55:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4778 elements, expanding data 1
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 248 elements, expanding data 2
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4778 elements, expanding data 1
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 248 elements, expanding data 2
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4945 elements, expanding data 1
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 918 elements, expanding data 2
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 234 elements, expanding data 3
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4945 elements, expanding data 1
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 918 elements, expanding data 2
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 234 elements, expanding data 3
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4945 elements, expanding data 1
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 918 elements, expanding data 2
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 234 elements, expanding data 3
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4945 elements, expanding data 1
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 918 elements, expanding data 2
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 234 elements, expanding data 3
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4945 elements, expanding data 1
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 918 elements, expanding data 2
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 234 elements, expanding data 3
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4945 elements, expanding data 1
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 918 elements, expanding data 2
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 234 elements, expanding data 3
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4945 elements, expanding data 1
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 918 elements, expanding data 2
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 234 elements, expanding data 3
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5947 elements, expanding data 1
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2529 elements, expanding data 2
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5947 elements, expanding data 1
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2529 elements, expanding data 2
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5947 elements, expanding data 1
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2529 elements, expanding data 2
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5947 elements, expanding data 1
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2529 elements, expanding data 2
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5947 elements, expanding data 1
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2529 elements, expanding data 2
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5947 elements, expanding data 1
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2529 elements, expanding data 2
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5947 elements, expanding data 1
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2529 elements, expanding data 2
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4778 elements, expanding data 1
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 248 elements, expanding data 2
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4778 elements, expanding data 1
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 248 elements, expanding data 2
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4778 elements, expanding data 1
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 248 elements, expanding data 2
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4778 elements, expanding data 1
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 248 elements, expanding data 2
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4778 elements, expanding data 1
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 248 elements, expanding data 2
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4778 elements, expanding data 1
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 248 elements, expanding data 2
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4778 elements, expanding data 1
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 248 elements, expanding data 2
10:55:42 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:42 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 19:00:00, weight 0.29) and
after (2023-08-22 20:00:00, weight 0.71) in time
10:55:42 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.18081296099837 and -58.960181706198036 degrees.
10:55:42 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.18081296099837 and -58.960181706198036 degrees.
10:55:42 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:42 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:42 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:42 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:42 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:42 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:42 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.713669 (min) 1.114 (max)
10:55:42 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.802119 (min) 0.896157 (max)
10:55:42 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000267773 (min) 0.000426151 (max)
10:55:42 DEBUG opendrift.models.basemodel:1524: x_wind: -8.3787 (min) 7.03987 (max)
10:55:42 DEBUG opendrift.models.basemodel:1524: y_wind: -4.46882 (min) 10.159 (max)
10:55:42 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:42 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:42 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:42 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:42 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:42 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:42 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:42 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 35.6221 (max)
10:55:42 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:42 DEBUG opendrift.models.basemodel:1527: 6875 active elements
10:55:42 DEBUG opendrift.models.basemodel:1538: 59.09488302775219 <- latitude -> 59.19055486036166
10:55:42 DEBUG opendrift.models.basemodel:1543: 10.819197615104626 <- longitude -> 11.03982883630776
10:55:42 DEBUG opendrift.models.basemodel:1548: -31.054311196628547 <- z -> 0.0
10:55:42 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:42 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:42 DEBUG opendrift.models.physics_methods:940: min: 0.038953, mean: 3.241477, max: 9.008396
10:55:42 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.038953, mean: 3.241477, max: 9.008396
10:55:42 DEBUG opendrift.models.basemodel:813: 1293 elements hit coastline, moving back to water
10:55:42 DEBUG opendrift.models.basemodel:836: Lifting 191 elements to seafloor.
10:55:42 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:42 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:42 DEBUG opendrift.models.physics_methods:741: Advecting 38 of 6875 elements above 0.100m with wind-sheared ocean current (0.003282 m/s - 0.137534 m/s)
10:55:42 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:42 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:42 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.10041879108198165
10:55:42 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:42 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:42 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:42 DEBUG opendrift.models.oceandrift:572: 849 elements penetrated seafloor, lifting up
10:55:42 DEBUG opendrift.models.oceandrift:590: 89 elements reached seafloor, set to bottom
10:55:42 DEBUG opendrift.models.basemodel:836: Lifting 89 elements to seafloor.
10:55:42 DEBUG opendrift.models.sedimentdrift:112: Settling 89 elements at seafloor
10:55:42 DEBUG opendrift.models.oceandrift:572: 659 elements penetrated seafloor, lifting up
10:55:42 DEBUG opendrift.models.oceandrift:590: 95 elements reached seafloor, set to bottom
10:55:42 DEBUG opendrift.models.basemodel:836: Lifting 95 elements to seafloor.
10:55:42 DEBUG opendrift.models.sedimentdrift:112: Settling 95 elements at seafloor
10:55:42 DEBUG opendrift.models.oceandrift:572: 597 elements penetrated seafloor, lifting up
10:55:42 DEBUG opendrift.models.oceandrift:590: 85 elements reached seafloor, set to bottom
10:55:42 DEBUG opendrift.models.basemodel:836: Lifting 85 elements to seafloor.
10:55:42 DEBUG opendrift.models.sedimentdrift:112: Settling 85 elements at seafloor
10:55:42 DEBUG opendrift.models.oceandrift:572: 564 elements penetrated seafloor, lifting up
10:55:42 DEBUG opendrift.models.oceandrift:590: 70 elements reached seafloor, set to bottom
10:55:42 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
10:55:42 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
10:55:42 DEBUG opendrift.models.oceandrift:572: 598 elements penetrated seafloor, lifting up
10:55:42 DEBUG opendrift.models.oceandrift:590: 71 elements reached seafloor, set to bottom
10:55:42 DEBUG opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
10:55:42 DEBUG opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
10:55:42 DEBUG opendrift.models.oceandrift:572: 557 elements penetrated seafloor, lifting up
10:55:42 DEBUG opendrift.models.oceandrift:590: 63 elements reached seafloor, set to bottom
10:55:42 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
10:55:42 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
10:55:42 DEBUG opendrift.models.oceandrift:572: 519 elements penetrated seafloor, lifting up
10:55:42 DEBUG opendrift.models.oceandrift:590: 58 elements reached seafloor, set to bottom
10:55:42 DEBUG opendrift.models.basemodel:836: Lifting 58 elements to seafloor.
10:55:42 DEBUG opendrift.models.sedimentdrift:112: Settling 58 elements at seafloor
10:55:42 DEBUG opendrift.models.oceandrift:572: 535 elements penetrated seafloor, lifting up
10:55:42 DEBUG opendrift.models.oceandrift:590: 62 elements reached seafloor, set to bottom
10:55:42 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
10:55:42 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
10:55:42 DEBUG opendrift.models.oceandrift:572: 480 elements penetrated seafloor, lifting up
10:55:42 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:55:42 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:55:42 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:55:42 DEBUG opendrift.models.oceandrift:572: 507 elements penetrated seafloor, lifting up
10:55:42 DEBUG opendrift.models.oceandrift:590: 79 elements reached seafloor, set to bottom
10:55:42 DEBUG opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
10:55:42 DEBUG opendrift.models.sedimentdrift:112: Settling 79 elements at seafloor
10:55:42 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:42 DEBUG opendrift.models.basemodel:2945: 6875 active elements (0 deactivated)
10:55:42 DEBUG opendrift.models.basemodel:1658: to be seeded: 3125, already seeded 6875
10:55:42 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:42 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:42 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:42 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:42 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:42 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:42 DEBUG opendrift.models.basemodel:1253: Data needed for 6910 elements
10:55:42 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:42 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 19:00:00 (before)
2023-08-22 20:00:00 (after)
10:55:42 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 19:00:00) in space (linearNDFast)
10:55:42 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:42 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:42 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:42 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:42 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:42 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:42 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 37.0912 (max)
10:55:42 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:42 DEBUG opendrift.models.basemodel:1527: 6910 active elements
10:55:42 DEBUG opendrift.models.basemodel:1538: 59.09406028311395 <- latitude -> 59.191086890499136
10:55:42 DEBUG opendrift.models.basemodel:1543: 10.818363850142566 <- longitude -> 11.04039604698934
10:55:42 DEBUG opendrift.models.basemodel:1548: -33.651405334472656 <- z -> 0.0
10:55:42 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:42 DEBUG opendrift.models.basemodel:836: Lifting 519 elements to seafloor.
10:55:42 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:42 INFO opendrift.models.basemodel:2882: 2023-08-22 19:52:19.552469 - step 199 of 216 - 6910 active elements (0 deactivated)
10:55:42 DEBUG opendrift.models.basemodel:2888: 3090 elements scheduled.
10:55:42 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:42 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:42 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:42 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:42 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:42 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:42 DEBUG opendrift.models.basemodel:1253: Data needed for 6910 elements
10:55:42 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:42 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:42 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:42 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:42 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:42 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:42 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:42 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:42 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:42 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:42 DEBUG opendrift.models.basemodel:1253: Data needed for 6910 elements
10:55:42 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:42 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 19:00:00 (before)
2023-08-22 20:00:00 (after)
10:55:43 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:43 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:43 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:43 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:43 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:43 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:43 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x32x7) for time after (2023-08-22 20:00:00)
10:55:43 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 19:00:00) in space (linearNDFast)
10:55:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:43 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 20:00:00) in space (linearNDFast)
10:55:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4766 elements, expanding data 1
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 2
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4766 elements, expanding data 1
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 2
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4947 elements, expanding data 1
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 911 elements, expanding data 2
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 247 elements, expanding data 3
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4947 elements, expanding data 1
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 911 elements, expanding data 2
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 247 elements, expanding data 3
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4947 elements, expanding data 1
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 911 elements, expanding data 2
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 247 elements, expanding data 3
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4947 elements, expanding data 1
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 911 elements, expanding data 2
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 247 elements, expanding data 3
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4947 elements, expanding data 1
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 911 elements, expanding data 2
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 247 elements, expanding data 3
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4947 elements, expanding data 1
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 911 elements, expanding data 2
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 247 elements, expanding data 3
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4947 elements, expanding data 1
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 911 elements, expanding data 2
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 247 elements, expanding data 3
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5964 elements, expanding data 1
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2570 elements, expanding data 2
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5964 elements, expanding data 1
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2570 elements, expanding data 2
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5964 elements, expanding data 1
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2570 elements, expanding data 2
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5964 elements, expanding data 1
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2570 elements, expanding data 2
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5964 elements, expanding data 1
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2570 elements, expanding data 2
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5964 elements, expanding data 1
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2570 elements, expanding data 2
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5964 elements, expanding data 1
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2570 elements, expanding data 2
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4766 elements, expanding data 1
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 2
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4766 elements, expanding data 1
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 2
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4766 elements, expanding data 1
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 2
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4766 elements, expanding data 1
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 2
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4766 elements, expanding data 1
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 2
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4766 elements, expanding data 1
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 2
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4766 elements, expanding data 1
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 255 elements, expanding data 2
10:55:43 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:43 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 19:00:00, weight 0.13) and
after (2023-08-22 20:00:00, weight 0.87) in time
10:55:43 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.18164671722559 and -58.95961450130478 degrees.
10:55:43 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.18164671722559 and -58.95961450130478 degrees.
10:55:43 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:43 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:43 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:43 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:43 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:43 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:43 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.756242 (min) 1.19934 (max)
10:55:43 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.995178 (min) 0.763102 (max)
10:55:43 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000277625 (min) 0.000467471 (max)
10:55:43 DEBUG opendrift.models.basemodel:1524: x_wind: -10.0736 (min) 7.43743 (max)
10:55:43 DEBUG opendrift.models.basemodel:1524: y_wind: -3.72153 (min) 10.9072 (max)
10:55:43 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:43 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:43 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:43 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:43 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:43 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:43 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:43 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 37.0912 (max)
10:55:43 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:43 DEBUG opendrift.models.basemodel:1527: 6910 active elements
10:55:43 DEBUG opendrift.models.basemodel:1538: 59.09406028311395 <- latitude -> 59.191086890499136
10:55:43 DEBUG opendrift.models.basemodel:1543: 10.818363850142566 <- longitude -> 11.04039604698934
10:55:43 DEBUG opendrift.models.basemodel:1548: -33.651405334472656 <- z -> 0.0
10:55:43 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:43 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:43 DEBUG opendrift.models.physics_methods:940: min: 0.072867, mean: 3.248415, max: 9.369019
10:55:43 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.072867, mean: 3.248415, max: 9.369019
10:55:43 DEBUG opendrift.models.basemodel:813: 1290 elements hit coastline, moving back to water
10:55:43 DEBUG opendrift.models.basemodel:836: Lifting 20 elements to seafloor.
10:55:43 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:43 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:43 DEBUG opendrift.models.physics_methods:741: Advecting 39 of 6910 elements above 0.100m with wind-sheared ocean current (0.009030 m/s - 0.136390 m/s)
10:55:43 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:43 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:43 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.10861928793485641
10:55:43 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:43 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:43 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:43 DEBUG opendrift.models.oceandrift:572: 845 elements penetrated seafloor, lifting up
10:55:43 DEBUG opendrift.models.oceandrift:590: 97 elements reached seafloor, set to bottom
10:55:43 DEBUG opendrift.models.basemodel:836: Lifting 97 elements to seafloor.
10:55:43 DEBUG opendrift.models.sedimentdrift:112: Settling 97 elements at seafloor
10:55:43 DEBUG opendrift.models.oceandrift:572: 626 elements penetrated seafloor, lifting up
10:55:43 DEBUG opendrift.models.oceandrift:590: 97 elements reached seafloor, set to bottom
10:55:43 DEBUG opendrift.models.basemodel:836: Lifting 97 elements to seafloor.
10:55:43 DEBUG opendrift.models.sedimentdrift:112: Settling 97 elements at seafloor
10:55:43 DEBUG opendrift.models.oceandrift:572: 612 elements penetrated seafloor, lifting up
10:55:43 DEBUG opendrift.models.oceandrift:590: 84 elements reached seafloor, set to bottom
10:55:43 DEBUG opendrift.models.basemodel:836: Lifting 84 elements to seafloor.
10:55:43 DEBUG opendrift.models.sedimentdrift:112: Settling 84 elements at seafloor
10:55:43 DEBUG opendrift.models.oceandrift:572: 534 elements penetrated seafloor, lifting up
10:55:43 DEBUG opendrift.models.oceandrift:590: 70 elements reached seafloor, set to bottom
10:55:43 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
10:55:43 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
10:55:43 DEBUG opendrift.models.oceandrift:572: 541 elements penetrated seafloor, lifting up
10:55:43 DEBUG opendrift.models.oceandrift:590: 83 elements reached seafloor, set to bottom
10:55:43 DEBUG opendrift.models.basemodel:836: Lifting 83 elements to seafloor.
10:55:43 DEBUG opendrift.models.sedimentdrift:112: Settling 83 elements at seafloor
10:55:43 DEBUG opendrift.models.oceandrift:572: 554 elements penetrated seafloor, lifting up
10:55:43 DEBUG opendrift.models.oceandrift:590: 77 elements reached seafloor, set to bottom
10:55:43 DEBUG opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
10:55:43 DEBUG opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
10:55:43 DEBUG opendrift.models.oceandrift:572: 548 elements penetrated seafloor, lifting up
10:55:43 DEBUG opendrift.models.oceandrift:590: 77 elements reached seafloor, set to bottom
10:55:43 DEBUG opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
10:55:43 DEBUG opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
10:55:43 DEBUG opendrift.models.oceandrift:572: 494 elements penetrated seafloor, lifting up
10:55:43 DEBUG opendrift.models.oceandrift:590: 72 elements reached seafloor, set to bottom
10:55:43 DEBUG opendrift.models.basemodel:836: Lifting 72 elements to seafloor.
10:55:43 DEBUG opendrift.models.sedimentdrift:112: Settling 72 elements at seafloor
10:55:43 DEBUG opendrift.models.oceandrift:572: 431 elements penetrated seafloor, lifting up
10:55:43 DEBUG opendrift.models.oceandrift:590: 74 elements reached seafloor, set to bottom
10:55:43 DEBUG opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
10:55:43 DEBUG opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
10:55:43 DEBUG opendrift.models.oceandrift:572: 482 elements penetrated seafloor, lifting up
10:55:43 DEBUG opendrift.models.oceandrift:590: 67 elements reached seafloor, set to bottom
10:55:43 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
10:55:43 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
10:55:43 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:43 DEBUG opendrift.models.basemodel:2945: 6910 active elements (0 deactivated)
10:55:43 DEBUG opendrift.models.basemodel:1658: to be seeded: 3090, already seeded 6910
10:55:43 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:55:43 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:43 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:43 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:43 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:43 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:43 DEBUG opendrift.models.basemodel:1253: Data needed for 6944 elements
10:55:43 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:43 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 20:00:00 (before)
2023-08-22 21:00:00 (after)
10:55:43 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 20:00:00) in space (linearNDFast)
10:55:43 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:43 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:43 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:43 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:43 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:43 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:43 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 36.878 (max)
10:55:43 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:43 DEBUG opendrift.models.basemodel:1527: 6944 active elements
10:55:43 DEBUG opendrift.models.basemodel:1538: 59.094257709569355 <- latitude -> 59.190488282219945
10:55:43 DEBUG opendrift.models.basemodel:1543: 10.818363850142566 <- longitude -> 11.040847709543097
10:55:43 DEBUG opendrift.models.basemodel:1548: -33.64140533447266 <- z -> 0.0
10:55:43 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:43 DEBUG opendrift.models.basemodel:836: Lifting 577 elements to seafloor.
10:55:43 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:43 INFO opendrift.models.basemodel:2882: 2023-08-22 20:02:19.552469 - step 200 of 216 - 6944 active elements (0 deactivated)
10:55:43 DEBUG opendrift.models.basemodel:2888: 3056 elements scheduled.
10:55:43 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:43 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:43 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:43 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:43 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:43 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:43 DEBUG opendrift.models.basemodel:1253: Data needed for 6944 elements
10:55:43 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:43 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:43 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:43 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:43 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:43 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:43 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:43 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:43 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:43 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:43 DEBUG opendrift.models.basemodel:1253: Data needed for 6944 elements
10:55:43 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:43 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 20:00:00 (before)
2023-08-22 21:00:00 (after)
10:55:44 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:44 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:44 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:44 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:44 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:44 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:44 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x32x7) for time after (2023-08-22 21:00:00)
10:55:44 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 20:00:00) in space (linearNDFast)
10:55:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:44 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 21:00:00) in space (linearNDFast)
10:55:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4819 elements, expanding data 1
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 2
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4819 elements, expanding data 1
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 2
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4993 elements, expanding data 1
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 925 elements, expanding data 2
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 3
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4993 elements, expanding data 1
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 925 elements, expanding data 2
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 3
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4993 elements, expanding data 1
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 925 elements, expanding data 2
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 3
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4993 elements, expanding data 1
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 925 elements, expanding data 2
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 3
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4993 elements, expanding data 1
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 925 elements, expanding data 2
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 3
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4993 elements, expanding data 1
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 925 elements, expanding data 2
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 3
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4993 elements, expanding data 1
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 925 elements, expanding data 2
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 3
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 4
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5985 elements, expanding data 1
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2595 elements, expanding data 2
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5985 elements, expanding data 1
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2595 elements, expanding data 2
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5985 elements, expanding data 1
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2595 elements, expanding data 2
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5985 elements, expanding data 1
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2595 elements, expanding data 2
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5985 elements, expanding data 1
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2595 elements, expanding data 2
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5985 elements, expanding data 1
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2595 elements, expanding data 2
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5985 elements, expanding data 1
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2595 elements, expanding data 2
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4819 elements, expanding data 1
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 2
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4819 elements, expanding data 1
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 2
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4819 elements, expanding data 1
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 2
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4819 elements, expanding data 1
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 2
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4819 elements, expanding data 1
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 2
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4819 elements, expanding data 1
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 2
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4819 elements, expanding data 1
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 2
10:55:44 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:44 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 20:00:00, weight 0.96) and
after (2023-08-22 21:00:00, weight 0.04) in time
10:55:44 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.18164672246833 and -58.95916283463865 degrees.
10:55:44 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.18164672246833 and -58.95916283463865 degrees.
10:55:44 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:44 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:44 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:44 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:44 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:44 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:44 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.816393 (min) 0.941443 (max)
10:55:44 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.936329 (min) 0.844949 (max)
10:55:44 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000305844 (min) 0.000564215 (max)
10:55:44 DEBUG opendrift.models.basemodel:1524: x_wind: -8.59802 (min) 8.44883 (max)
10:55:44 DEBUG opendrift.models.basemodel:1524: y_wind: -4.51441 (min) 10.6014 (max)
10:55:44 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:44 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:44 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:44 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:44 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:44 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:44 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:44 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 36.878 (max)
10:55:44 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:44 DEBUG opendrift.models.basemodel:1527: 6944 active elements
10:55:44 DEBUG opendrift.models.basemodel:1538: 59.094257709569355 <- latitude -> 59.190488282219945
10:55:44 DEBUG opendrift.models.basemodel:1543: 10.818363850142566 <- longitude -> 11.040847709543097
10:55:44 DEBUG opendrift.models.basemodel:1548: -33.64140533447266 <- z -> 0.0
10:55:44 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:44 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:44 DEBUG opendrift.models.physics_methods:940: min: 0.097606, mean: 3.255180, max: 9.232729
10:55:44 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.097606, mean: 3.255180, max: 9.232729
10:55:44 DEBUG opendrift.models.basemodel:813: 1317 elements hit coastline, moving back to water
10:55:44 DEBUG opendrift.models.basemodel:836: Lifting 172 elements to seafloor.
10:55:44 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:44 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:44 DEBUG opendrift.models.physics_methods:741: Advecting 49 of 6944 elements above 0.100m with wind-sheared ocean current (0.001998 m/s - 0.191610 m/s)
10:55:44 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:44 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:44 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.1054822371893692
10:55:44 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:44 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:44 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:44 DEBUG opendrift.models.oceandrift:572: 825 elements penetrated seafloor, lifting up
10:55:44 DEBUG opendrift.models.oceandrift:590: 96 elements reached seafloor, set to bottom
10:55:44 DEBUG opendrift.models.basemodel:836: Lifting 96 elements to seafloor.
10:55:44 DEBUG opendrift.models.sedimentdrift:112: Settling 96 elements at seafloor
10:55:44 DEBUG opendrift.models.oceandrift:572: 635 elements penetrated seafloor, lifting up
10:55:44 DEBUG opendrift.models.oceandrift:590: 94 elements reached seafloor, set to bottom
10:55:44 DEBUG opendrift.models.basemodel:836: Lifting 94 elements to seafloor.
10:55:44 DEBUG opendrift.models.sedimentdrift:112: Settling 94 elements at seafloor
10:55:44 DEBUG opendrift.models.oceandrift:572: 566 elements penetrated seafloor, lifting up
10:55:44 DEBUG opendrift.models.oceandrift:590: 76 elements reached seafloor, set to bottom
10:55:44 DEBUG opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
10:55:44 DEBUG opendrift.models.sedimentdrift:112: Settling 76 elements at seafloor
10:55:44 DEBUG opendrift.models.oceandrift:572: 562 elements penetrated seafloor, lifting up
10:55:44 DEBUG opendrift.models.oceandrift:590: 64 elements reached seafloor, set to bottom
10:55:44 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
10:55:44 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
10:55:44 DEBUG opendrift.models.oceandrift:572: 503 elements penetrated seafloor, lifting up
10:55:44 DEBUG opendrift.models.oceandrift:590: 74 elements reached seafloor, set to bottom
10:55:44 DEBUG opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
10:55:44 DEBUG opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
10:55:44 DEBUG opendrift.models.oceandrift:572: 519 elements penetrated seafloor, lifting up
10:55:44 DEBUG opendrift.models.oceandrift:590: 71 elements reached seafloor, set to bottom
10:55:44 DEBUG opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
10:55:44 DEBUG opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
10:55:44 DEBUG opendrift.models.oceandrift:572: 506 elements penetrated seafloor, lifting up
10:55:44 DEBUG opendrift.models.oceandrift:590: 69 elements reached seafloor, set to bottom
10:55:44 DEBUG opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
10:55:44 DEBUG opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
10:55:44 DEBUG opendrift.models.oceandrift:572: 515 elements penetrated seafloor, lifting up
10:55:44 DEBUG opendrift.models.oceandrift:590: 65 elements reached seafloor, set to bottom
10:55:44 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
10:55:44 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
10:55:44 DEBUG opendrift.models.oceandrift:572: 484 elements penetrated seafloor, lifting up
10:55:44 DEBUG opendrift.models.oceandrift:590: 53 elements reached seafloor, set to bottom
10:55:44 DEBUG opendrift.models.basemodel:836: Lifting 53 elements to seafloor.
10:55:44 DEBUG opendrift.models.sedimentdrift:112: Settling 53 elements at seafloor
10:55:44 DEBUG opendrift.models.oceandrift:572: 498 elements penetrated seafloor, lifting up
10:55:44 DEBUG opendrift.models.oceandrift:590: 65 elements reached seafloor, set to bottom
10:55:44 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
10:55:44 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
10:55:44 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:44 DEBUG opendrift.models.basemodel:2945: 6944 active elements (0 deactivated)
10:55:44 DEBUG opendrift.models.basemodel:1658: to be seeded: 3056, already seeded 6944
10:55:44 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:44 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:44 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:44 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:44 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:44 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:44 DEBUG opendrift.models.basemodel:1253: Data needed for 6979 elements
10:55:44 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:44 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 20:00:00 (before)
2023-08-22 21:00:00 (after)
10:55:44 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 20:00:00) in space (linearNDFast)
10:55:44 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:44 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:44 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:44 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:44 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:44 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:44 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 37.3474 (max)
10:55:44 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:44 DEBUG opendrift.models.basemodel:1527: 6979 active elements
10:55:44 DEBUG opendrift.models.basemodel:1538: 59.09383531103292 <- latitude -> 59.18989759035735
10:55:44 DEBUG opendrift.models.basemodel:1543: 10.8206904541431 <- longitude -> 11.040771409648402
10:55:44 DEBUG opendrift.models.basemodel:1548: -34.58326934814453 <- z -> 0.0
10:55:44 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:44 DEBUG opendrift.models.basemodel:836: Lifting 507 elements to seafloor.
10:55:44 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:44 INFO opendrift.models.basemodel:2882: 2023-08-22 20:12:19.552469 - step 201 of 216 - 6979 active elements (0 deactivated)
10:55:44 DEBUG opendrift.models.basemodel:2888: 3021 elements scheduled.
10:55:44 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:44 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:44 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:44 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:44 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:44 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:44 DEBUG opendrift.models.basemodel:1253: Data needed for 6979 elements
10:55:44 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:44 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:44 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:44 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:44 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:44 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:44 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:44 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:44 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:44 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:44 DEBUG opendrift.models.basemodel:1253: Data needed for 6979 elements
10:55:44 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:44 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 20:00:00 (before)
2023-08-22 21:00:00 (after)
10:55:45 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:45 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:45 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:45 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:45 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:45 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:45 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x32x7) for time after (2023-08-22 21:00:00)
10:55:45 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 20:00:00) in space (linearNDFast)
10:55:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:45 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 21:00:00) in space (linearNDFast)
10:55:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4894 elements, expanding data 1
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 2
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4894 elements, expanding data 1
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 2
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5060 elements, expanding data 1
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 937 elements, expanding data 2
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 3
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5060 elements, expanding data 1
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 937 elements, expanding data 2
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 3
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5060 elements, expanding data 1
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 937 elements, expanding data 2
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 3
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5060 elements, expanding data 1
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 937 elements, expanding data 2
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 3
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5060 elements, expanding data 1
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 937 elements, expanding data 2
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 3
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5060 elements, expanding data 1
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 937 elements, expanding data 2
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 3
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5060 elements, expanding data 1
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 937 elements, expanding data 2
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 235 elements, expanding data 3
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6028 elements, expanding data 1
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2634 elements, expanding data 2
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6028 elements, expanding data 1
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2634 elements, expanding data 2
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6028 elements, expanding data 1
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2634 elements, expanding data 2
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6028 elements, expanding data 1
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2634 elements, expanding data 2
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6028 elements, expanding data 1
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2634 elements, expanding data 2
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6028 elements, expanding data 1
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2634 elements, expanding data 2
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6028 elements, expanding data 1
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2634 elements, expanding data 2
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4894 elements, expanding data 1
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 2
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4894 elements, expanding data 1
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 2
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4894 elements, expanding data 1
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 2
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4894 elements, expanding data 1
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 2
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4894 elements, expanding data 1
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 2
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4894 elements, expanding data 1
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 2
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4894 elements, expanding data 1
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 2
10:55:45 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:45 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 20:00:00, weight 0.79) and
after (2023-08-22 21:00:00, weight 0.21) in time
10:55:45 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.17932011510646 and -58.95923914041527 degrees.
10:55:45 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.17932011510646 and -58.95923914041527 degrees.
10:55:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:45 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:45 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:45 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:45 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:45 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:45 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.742494 (min) 1.04299 (max)
10:55:45 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.842156 (min) 0.823849 (max)
10:55:45 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000264318 (min) 0.000569719 (max)
10:55:45 DEBUG opendrift.models.basemodel:1524: x_wind: -8.18812 (min) 8.58166 (max)
10:55:45 DEBUG opendrift.models.basemodel:1524: y_wind: -3.87121 (min) 11.1961 (max)
10:55:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:45 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:45 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:45 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:45 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:45 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 37.3474 (max)
10:55:45 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:45 DEBUG opendrift.models.basemodel:1527: 6979 active elements
10:55:45 DEBUG opendrift.models.basemodel:1538: 59.09383531103292 <- latitude -> 59.18989759035735
10:55:45 DEBUG opendrift.models.basemodel:1543: 10.8206904541431 <- longitude -> 11.040771409648402
10:55:45 DEBUG opendrift.models.basemodel:1548: -31.594179153442383 <- z -> 0.0
10:55:45 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:45 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:45 DEBUG opendrift.models.physics_methods:940: min: 0.150238, mean: 3.311746, max: 10.099161
10:55:45 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.150238, mean: 3.311746, max: 10.099161
10:55:45 DEBUG opendrift.models.basemodel:813: 1304 elements hit coastline, moving back to water
10:55:45 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:55:45 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:45 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:45 DEBUG opendrift.models.physics_methods:741: Advecting 44 of 6979 elements above 0.100m with wind-sheared ocean current (0.002761 m/s - 0.123674 m/s)
10:55:45 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:45 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:45 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.12620802917821883
10:55:45 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:45 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:45 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:45 DEBUG opendrift.models.oceandrift:572: 867 elements penetrated seafloor, lifting up
10:55:45 DEBUG opendrift.models.oceandrift:590: 98 elements reached seafloor, set to bottom
10:55:45 DEBUG opendrift.models.basemodel:836: Lifting 98 elements to seafloor.
10:55:45 DEBUG opendrift.models.sedimentdrift:112: Settling 98 elements at seafloor
10:55:45 DEBUG opendrift.models.oceandrift:572: 706 elements penetrated seafloor, lifting up
10:55:45 DEBUG opendrift.models.oceandrift:590: 98 elements reached seafloor, set to bottom
10:55:45 DEBUG opendrift.models.basemodel:836: Lifting 98 elements to seafloor.
10:55:45 DEBUG opendrift.models.sedimentdrift:112: Settling 98 elements at seafloor
10:55:45 DEBUG opendrift.models.oceandrift:572: 598 elements penetrated seafloor, lifting up
10:55:45 DEBUG opendrift.models.oceandrift:590: 85 elements reached seafloor, set to bottom
10:55:45 DEBUG opendrift.models.basemodel:836: Lifting 85 elements to seafloor.
10:55:45 DEBUG opendrift.models.sedimentdrift:112: Settling 85 elements at seafloor
10:55:45 DEBUG opendrift.models.oceandrift:572: 581 elements penetrated seafloor, lifting up
10:55:45 DEBUG opendrift.models.oceandrift:590: 66 elements reached seafloor, set to bottom
10:55:45 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
10:55:45 DEBUG opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
10:55:45 DEBUG opendrift.models.oceandrift:572: 527 elements penetrated seafloor, lifting up
10:55:45 DEBUG opendrift.models.oceandrift:590: 81 elements reached seafloor, set to bottom
10:55:45 DEBUG opendrift.models.basemodel:836: Lifting 81 elements to seafloor.
10:55:45 DEBUG opendrift.models.sedimentdrift:112: Settling 81 elements at seafloor
10:55:45 DEBUG opendrift.models.oceandrift:572: 529 elements penetrated seafloor, lifting up
10:55:45 DEBUG opendrift.models.oceandrift:590: 65 elements reached seafloor, set to bottom
10:55:45 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
10:55:45 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
10:55:45 DEBUG opendrift.models.oceandrift:572: 533 elements penetrated seafloor, lifting up
10:55:45 DEBUG opendrift.models.oceandrift:590: 77 elements reached seafloor, set to bottom
10:55:45 DEBUG opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
10:55:45 DEBUG opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
10:55:45 DEBUG opendrift.models.oceandrift:572: 500 elements penetrated seafloor, lifting up
10:55:45 DEBUG opendrift.models.oceandrift:590: 52 elements reached seafloor, set to bottom
10:55:45 DEBUG opendrift.models.basemodel:836: Lifting 52 elements to seafloor.
10:55:45 DEBUG opendrift.models.sedimentdrift:112: Settling 52 elements at seafloor
10:55:45 DEBUG opendrift.models.oceandrift:572: 496 elements penetrated seafloor, lifting up
10:55:45 DEBUG opendrift.models.oceandrift:590: 71 elements reached seafloor, set to bottom
10:55:45 DEBUG opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
10:55:45 DEBUG opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
10:55:45 DEBUG opendrift.models.oceandrift:572: 498 elements penetrated seafloor, lifting up
10:55:45 DEBUG opendrift.models.oceandrift:590: 76 elements reached seafloor, set to bottom
10:55:45 DEBUG opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
10:55:45 DEBUG opendrift.models.sedimentdrift:112: Settling 76 elements at seafloor
10:55:45 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:45 DEBUG opendrift.models.basemodel:2945: 6979 active elements (0 deactivated)
10:55:45 DEBUG opendrift.models.basemodel:1658: to be seeded: 3021, already seeded 6979
10:55:45 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:45 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:45 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:45 DEBUG opendrift.models.basemodel:1253: Data needed for 7014 elements
10:55:45 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:45 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 20:00:00 (before)
2023-08-22 21:00:00 (after)
10:55:45 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 20:00:00) in space (linearNDFast)
10:55:45 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:45 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:45 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:45 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:45 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:45 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 37.6709 (max)
10:55:45 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:45 DEBUG opendrift.models.basemodel:1527: 7014 active elements
10:55:45 DEBUG opendrift.models.basemodel:1538: 59.09170653610949 <- latitude -> 59.19097254329543
10:55:45 DEBUG opendrift.models.basemodel:1543: 10.817292772389202 <- longitude -> 11.04372925535329
10:55:45 DEBUG opendrift.models.basemodel:1548: -33.70576953983041 <- z -> 0.0
10:55:45 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:45 DEBUG opendrift.models.basemodel:836: Lifting 525 elements to seafloor.
10:55:45 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:45 INFO opendrift.models.basemodel:2882: 2023-08-22 20:22:19.552469 - step 202 of 216 - 7014 active elements (0 deactivated)
10:55:45 DEBUG opendrift.models.basemodel:2888: 2986 elements scheduled.
10:55:45 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:45 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:45 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:45 DEBUG opendrift.models.basemodel:1253: Data needed for 7014 elements
10:55:45 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:45 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:45 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:45 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:45 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:45 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:45 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:45 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:45 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:45 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:45 DEBUG opendrift.models.basemodel:1253: Data needed for 7014 elements
10:55:45 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:45 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 20:00:00 (before)
2023-08-22 21:00:00 (after)
10:55:46 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:46 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:46 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:46 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:46 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:46 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:46 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x32x7) for time after (2023-08-22 21:00:00)
10:55:46 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 20:00:00) in space (linearNDFast)
10:55:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:46 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 21:00:00) in space (linearNDFast)
10:55:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4906 elements, expanding data 1
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 263 elements, expanding data 2
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4906 elements, expanding data 1
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 263 elements, expanding data 2
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5086 elements, expanding data 1
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 941 elements, expanding data 2
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 247 elements, expanding data 3
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5086 elements, expanding data 1
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 941 elements, expanding data 2
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 247 elements, expanding data 3
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5086 elements, expanding data 1
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 941 elements, expanding data 2
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 247 elements, expanding data 3
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5086 elements, expanding data 1
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 941 elements, expanding data 2
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 247 elements, expanding data 3
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5086 elements, expanding data 1
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 941 elements, expanding data 2
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 247 elements, expanding data 3
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5086 elements, expanding data 1
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 941 elements, expanding data 2
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 247 elements, expanding data 3
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5086 elements, expanding data 1
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 941 elements, expanding data 2
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 247 elements, expanding data 3
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6068 elements, expanding data 1
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2674 elements, expanding data 2
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6068 elements, expanding data 1
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2674 elements, expanding data 2
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6068 elements, expanding data 1
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2674 elements, expanding data 2
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6068 elements, expanding data 1
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2674 elements, expanding data 2
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6068 elements, expanding data 1
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2674 elements, expanding data 2
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6068 elements, expanding data 1
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2674 elements, expanding data 2
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6068 elements, expanding data 1
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2674 elements, expanding data 2
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4906 elements, expanding data 1
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 263 elements, expanding data 2
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4906 elements, expanding data 1
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 263 elements, expanding data 2
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4906 elements, expanding data 1
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 263 elements, expanding data 2
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4906 elements, expanding data 1
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 263 elements, expanding data 2
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4906 elements, expanding data 1
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 263 elements, expanding data 2
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4906 elements, expanding data 1
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 263 elements, expanding data 2
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4906 elements, expanding data 1
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 263 elements, expanding data 2
10:55:46 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 3
10:55:46 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 20:00:00, weight 0.63) and
after (2023-08-22 21:00:00, weight 0.37) in time
10:55:46 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.1827178052502 and -58.95628128697793 degrees.
10:55:46 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.1827178052502 and -58.95628128697793 degrees.
10:55:46 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:46 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:46 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:46 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:46 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:46 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:46 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.665648 (min) 1.03308 (max)
10:55:46 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.881118 (min) 0.862262 (max)
10:55:46 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000241457 (min) 0.000519232 (max)
10:55:46 DEBUG opendrift.models.basemodel:1524: x_wind: -8.31394 (min) 7.12195 (max)
10:55:46 DEBUG opendrift.models.basemodel:1524: y_wind: -4.83727 (min) 10.3974 (max)
10:55:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:46 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:46 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:46 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:46 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:46 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 37.6709 (max)
10:55:46 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:46 DEBUG opendrift.models.basemodel:1527: 7014 active elements
10:55:46 DEBUG opendrift.models.basemodel:1538: 59.09170653610949 <- latitude -> 59.19097254329543
10:55:46 DEBUG opendrift.models.basemodel:1543: 10.817292772389202 <- longitude -> 11.04372925535329
10:55:46 DEBUG opendrift.models.basemodel:1548: -33.70576953983041 <- z -> 0.0
10:55:46 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:46 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:46 DEBUG opendrift.models.physics_methods:940: min: 0.020690, mean: 3.397553, max: 9.331470
10:55:46 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.020690, mean: 3.397553, max: 9.331470
10:55:46 DEBUG opendrift.models.basemodel:813: 1344 elements hit coastline, moving back to water
10:55:46 DEBUG opendrift.models.basemodel:836: Lifting 36 elements to seafloor.
10:55:46 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:46 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:46 DEBUG opendrift.models.physics_methods:741: Advecting 43 of 7014 elements above 0.100m with wind-sheared ocean current (0.005661 m/s - 0.197319 m/s)
10:55:46 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:46 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:46 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.10775039642675399
10:55:46 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:46 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:46 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:46 DEBUG opendrift.models.oceandrift:572: 867 elements penetrated seafloor, lifting up
10:55:46 DEBUG opendrift.models.oceandrift:590: 97 elements reached seafloor, set to bottom
10:55:46 DEBUG opendrift.models.basemodel:836: Lifting 97 elements to seafloor.
10:55:46 DEBUG opendrift.models.sedimentdrift:112: Settling 97 elements at seafloor
10:55:46 DEBUG opendrift.models.oceandrift:572: 648 elements penetrated seafloor, lifting up
10:55:46 DEBUG opendrift.models.oceandrift:590: 85 elements reached seafloor, set to bottom
10:55:46 DEBUG opendrift.models.basemodel:836: Lifting 85 elements to seafloor.
10:55:46 DEBUG opendrift.models.sedimentdrift:112: Settling 85 elements at seafloor
10:55:46 DEBUG opendrift.models.oceandrift:572: 624 elements penetrated seafloor, lifting up
10:55:46 DEBUG opendrift.models.oceandrift:590: 77 elements reached seafloor, set to bottom
10:55:46 DEBUG opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
10:55:46 DEBUG opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
10:55:46 DEBUG opendrift.models.oceandrift:572: 602 elements penetrated seafloor, lifting up
10:55:46 DEBUG opendrift.models.oceandrift:590: 76 elements reached seafloor, set to bottom
10:55:46 DEBUG opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
10:55:46 DEBUG opendrift.models.sedimentdrift:112: Settling 76 elements at seafloor
10:55:46 DEBUG opendrift.models.oceandrift:572: 558 elements penetrated seafloor, lifting up
10:55:46 DEBUG opendrift.models.oceandrift:590: 62 elements reached seafloor, set to bottom
10:55:46 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
10:55:46 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
10:55:46 DEBUG opendrift.models.oceandrift:572: 521 elements penetrated seafloor, lifting up
10:55:46 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:55:46 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:55:46 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:55:46 DEBUG opendrift.models.oceandrift:572: 537 elements penetrated seafloor, lifting up
10:55:46 DEBUG opendrift.models.oceandrift:590: 72 elements reached seafloor, set to bottom
10:55:46 DEBUG opendrift.models.basemodel:836: Lifting 72 elements to seafloor.
10:55:46 DEBUG opendrift.models.sedimentdrift:112: Settling 72 elements at seafloor
10:55:46 DEBUG opendrift.models.oceandrift:572: 544 elements penetrated seafloor, lifting up
10:55:46 DEBUG opendrift.models.oceandrift:590: 68 elements reached seafloor, set to bottom
10:55:46 DEBUG opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
10:55:46 DEBUG opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
10:55:46 DEBUG opendrift.models.oceandrift:572: 495 elements penetrated seafloor, lifting up
10:55:46 DEBUG opendrift.models.oceandrift:590: 68 elements reached seafloor, set to bottom
10:55:46 DEBUG opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
10:55:46 DEBUG opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
10:55:46 DEBUG opendrift.models.oceandrift:572: 509 elements penetrated seafloor, lifting up
10:55:46 DEBUG opendrift.models.oceandrift:590: 71 elements reached seafloor, set to bottom
10:55:46 DEBUG opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
10:55:46 DEBUG opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
10:55:46 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:46 DEBUG opendrift.models.basemodel:2945: 7014 active elements (0 deactivated)
10:55:46 DEBUG opendrift.models.basemodel:1658: to be seeded: 2986, already seeded 7014
10:55:46 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:55:46 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:46 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:46 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:46 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:46 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:46 DEBUG opendrift.models.basemodel:1253: Data needed for 7048 elements
10:55:46 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:46 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 20:00:00 (before)
2023-08-22 21:00:00 (after)
10:55:46 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 20:00:00) in space (linearNDFast)
10:55:46 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:46 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:46 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:46 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:46 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:46 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:46 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 38.3311 (max)
10:55:46 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:46 DEBUG opendrift.models.basemodel:1527: 7048 active elements
10:55:46 DEBUG opendrift.models.basemodel:1538: 59.092044055817766 <- latitude -> 59.190165409812046
10:55:46 DEBUG opendrift.models.basemodel:1543: 10.817204982456623 <- longitude -> 11.039677918401761
10:55:46 DEBUG opendrift.models.basemodel:1548: -34.82685161423591 <- z -> 0.0
10:55:46 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:46 DEBUG opendrift.models.basemodel:836: Lifting 509 elements to seafloor.
10:55:46 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:46 INFO opendrift.models.basemodel:2882: 2023-08-22 20:32:19.552469 - step 203 of 216 - 7048 active elements (0 deactivated)
10:55:46 DEBUG opendrift.models.basemodel:2888: 2952 elements scheduled.
10:55:46 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:46 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:46 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:46 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:46 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:46 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:46 DEBUG opendrift.models.basemodel:1253: Data needed for 7048 elements
10:55:46 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:46 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:46 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:46 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:46 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:46 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:46 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:46 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:46 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:46 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:46 DEBUG opendrift.models.basemodel:1253: Data needed for 7048 elements
10:55:46 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:46 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 20:00:00 (before)
2023-08-22 21:00:00 (after)
10:55:47 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:47 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:47 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:47 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:47 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:47 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:47 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x32x7) for time after (2023-08-22 21:00:00)
10:55:47 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 20:00:00) in space (linearNDFast)
10:55:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:47 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 21:00:00) in space (linearNDFast)
10:55:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4919 elements, expanding data 1
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4919 elements, expanding data 1
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5086 elements, expanding data 1
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 937 elements, expanding data 2
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 3
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5086 elements, expanding data 1
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 937 elements, expanding data 2
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 3
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5086 elements, expanding data 1
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 937 elements, expanding data 2
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 3
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5086 elements, expanding data 1
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 937 elements, expanding data 2
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 3
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5086 elements, expanding data 1
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 937 elements, expanding data 2
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 3
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5086 elements, expanding data 1
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 937 elements, expanding data 2
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 3
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5086 elements, expanding data 1
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 937 elements, expanding data 2
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 246 elements, expanding data 3
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6109 elements, expanding data 1
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2687 elements, expanding data 2
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6109 elements, expanding data 1
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2687 elements, expanding data 2
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6109 elements, expanding data 1
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2687 elements, expanding data 2
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6109 elements, expanding data 1
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2687 elements, expanding data 2
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6109 elements, expanding data 1
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2687 elements, expanding data 2
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6109 elements, expanding data 1
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2687 elements, expanding data 2
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6109 elements, expanding data 1
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2687 elements, expanding data 2
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4919 elements, expanding data 1
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4919 elements, expanding data 1
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4919 elements, expanding data 1
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4919 elements, expanding data 1
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4919 elements, expanding data 1
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4919 elements, expanding data 1
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4919 elements, expanding data 1
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
10:55:47 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 3
10:55:47 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 20:00:00, weight 0.46) and
after (2023-08-22 21:00:00, weight 0.54) in time
10:55:47 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.18280558532575 and -58.96033262479092 degrees.
10:55:47 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.18280558532575 and -58.96033262479092 degrees.
10:55:47 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:47 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:47 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:47 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:47 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:47 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:47 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.899948 (min) 1.18167 (max)
10:55:47 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.970224 (min) 0.845082 (max)
10:55:47 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000249923 (min) 0.000441038 (max)
10:55:47 DEBUG opendrift.models.basemodel:1524: x_wind: -9.01402 (min) 7.69879 (max)
10:55:47 DEBUG opendrift.models.basemodel:1524: y_wind: -4.97161 (min) 13.218 (max)
10:55:47 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:47 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:47 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:47 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:47 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:47 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:47 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:47 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 38.3311 (max)
10:55:47 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:47 DEBUG opendrift.models.basemodel:1527: 7048 active elements
10:55:47 DEBUG opendrift.models.basemodel:1538: 59.092044055817766 <- latitude -> 59.190165409812046
10:55:47 DEBUG opendrift.models.basemodel:1543: 10.817204982456623 <- longitude -> 11.039677918401761
10:55:47 DEBUG opendrift.models.basemodel:1548: -34.82685161423591 <- z -> 0.0
10:55:47 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:47 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:47 DEBUG opendrift.models.physics_methods:940: min: 0.059916, mean: 3.465349, max: 11.310530
10:55:47 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.059916, mean: 3.465349, max: 11.310530
10:55:47 DEBUG opendrift.models.basemodel:813: 1330 elements hit coastline, moving back to water
10:55:47 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:55:47 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:47 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:47 DEBUG opendrift.models.physics_methods:741: Advecting 41 of 7048 elements above 0.100m with wind-sheared ocean current (0.005288 m/s - 0.178614 m/s)
10:55:47 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:47 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:47 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.1582995026016998
10:55:47 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:47 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:47 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:47 DEBUG opendrift.models.oceandrift:572: 838 elements penetrated seafloor, lifting up
10:55:47 DEBUG opendrift.models.oceandrift:590: 83 elements reached seafloor, set to bottom
10:55:47 DEBUG opendrift.models.basemodel:836: Lifting 83 elements to seafloor.
10:55:47 DEBUG opendrift.models.sedimentdrift:112: Settling 83 elements at seafloor
10:55:47 DEBUG opendrift.models.oceandrift:572: 661 elements penetrated seafloor, lifting up
10:55:47 DEBUG opendrift.models.oceandrift:590: 86 elements reached seafloor, set to bottom
10:55:47 DEBUG opendrift.models.basemodel:836: Lifting 86 elements to seafloor.
10:55:47 DEBUG opendrift.models.sedimentdrift:112: Settling 86 elements at seafloor
10:55:47 DEBUG opendrift.models.oceandrift:572: 614 elements penetrated seafloor, lifting up
10:55:47 DEBUG opendrift.models.oceandrift:590: 110 elements reached seafloor, set to bottom
10:55:47 DEBUG opendrift.models.basemodel:836: Lifting 110 elements to seafloor.
10:55:47 DEBUG opendrift.models.sedimentdrift:112: Settling 110 elements at seafloor
10:55:47 DEBUG opendrift.models.oceandrift:572: 623 elements penetrated seafloor, lifting up
10:55:47 DEBUG opendrift.models.oceandrift:590: 66 elements reached seafloor, set to bottom
10:55:47 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
10:55:47 DEBUG opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
10:55:47 DEBUG opendrift.models.oceandrift:572: 543 elements penetrated seafloor, lifting up
10:55:47 DEBUG opendrift.models.oceandrift:590: 70 elements reached seafloor, set to bottom
10:55:47 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
10:55:47 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
10:55:47 DEBUG opendrift.models.oceandrift:572: 596 elements penetrated seafloor, lifting up
10:55:47 DEBUG opendrift.models.oceandrift:590: 56 elements reached seafloor, set to bottom
10:55:47 DEBUG opendrift.models.basemodel:836: Lifting 56 elements to seafloor.
10:55:47 DEBUG opendrift.models.sedimentdrift:112: Settling 56 elements at seafloor
10:55:47 DEBUG opendrift.models.oceandrift:572: 580 elements penetrated seafloor, lifting up
10:55:47 DEBUG opendrift.models.oceandrift:590: 70 elements reached seafloor, set to bottom
10:55:47 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
10:55:47 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
10:55:47 DEBUG opendrift.models.oceandrift:572: 505 elements penetrated seafloor, lifting up
10:55:47 DEBUG opendrift.models.oceandrift:590: 69 elements reached seafloor, set to bottom
10:55:47 DEBUG opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
10:55:47 DEBUG opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
10:55:47 DEBUG opendrift.models.oceandrift:572: 501 elements penetrated seafloor, lifting up
10:55:47 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:55:47 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:55:47 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:55:47 DEBUG opendrift.models.oceandrift:572: 485 elements penetrated seafloor, lifting up
10:55:47 DEBUG opendrift.models.oceandrift:590: 81 elements reached seafloor, set to bottom
10:55:47 DEBUG opendrift.models.basemodel:836: Lifting 81 elements to seafloor.
10:55:47 DEBUG opendrift.models.sedimentdrift:112: Settling 81 elements at seafloor
10:55:47 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:47 DEBUG opendrift.models.basemodel:2945: 7048 active elements (0 deactivated)
10:55:47 DEBUG opendrift.models.basemodel:1658: to be seeded: 2952, already seeded 7048
10:55:47 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:47 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:47 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:47 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:47 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:47 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:47 DEBUG opendrift.models.basemodel:1253: Data needed for 7083 elements
10:55:47 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:47 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 20:00:00 (before)
2023-08-22 21:00:00 (after)
10:55:47 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 20:00:00) in space (linearNDFast)
10:55:47 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:47 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:47 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:47 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:47 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:47 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:47 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 37.6842 (max)
10:55:47 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:47 DEBUG opendrift.models.basemodel:1527: 7083 active elements
10:55:47 DEBUG opendrift.models.basemodel:1538: 59.09371594239377 <- latitude -> 59.19025767940056
10:55:47 DEBUG opendrift.models.basemodel:1543: 10.820717576158852 <- longitude -> 11.043899986647036
10:55:47 DEBUG opendrift.models.basemodel:1548: -35.19541931152344 <- z -> 0.0
10:55:47 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:47 DEBUG opendrift.models.basemodel:836: Lifting 541 elements to seafloor.
10:55:47 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:47 INFO opendrift.models.basemodel:2882: 2023-08-22 20:42:19.552469 - step 204 of 216 - 7083 active elements (0 deactivated)
10:55:47 DEBUG opendrift.models.basemodel:2888: 2917 elements scheduled.
10:55:47 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:47 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:47 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:47 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:47 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:47 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:47 DEBUG opendrift.models.basemodel:1253: Data needed for 7083 elements
10:55:47 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:47 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:47 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:47 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:47 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:47 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:47 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:47 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:47 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:47 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:47 DEBUG opendrift.models.basemodel:1253: Data needed for 7083 elements
10:55:47 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:47 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 20:00:00 (before)
2023-08-22 21:00:00 (after)
10:55:48 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:48 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:48 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:48 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:48 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:48 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:48 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x32x7) for time after (2023-08-22 21:00:00)
10:55:48 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 20:00:00) in space (linearNDFast)
10:55:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:48 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 21:00:00) in space (linearNDFast)
10:55:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4972 elements, expanding data 1
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4972 elements, expanding data 1
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5131 elements, expanding data 1
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 941 elements, expanding data 2
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 245 elements, expanding data 3
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5131 elements, expanding data 1
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 941 elements, expanding data 2
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 245 elements, expanding data 3
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5131 elements, expanding data 1
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 941 elements, expanding data 2
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 245 elements, expanding data 3
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5131 elements, expanding data 1
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 941 elements, expanding data 2
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 245 elements, expanding data 3
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5131 elements, expanding data 1
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 941 elements, expanding data 2
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 245 elements, expanding data 3
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5131 elements, expanding data 1
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 941 elements, expanding data 2
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 245 elements, expanding data 3
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5131 elements, expanding data 1
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 941 elements, expanding data 2
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 245 elements, expanding data 3
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6130 elements, expanding data 1
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2689 elements, expanding data 2
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6130 elements, expanding data 1
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2689 elements, expanding data 2
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6130 elements, expanding data 1
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2689 elements, expanding data 2
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6130 elements, expanding data 1
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2689 elements, expanding data 2
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6130 elements, expanding data 1
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2689 elements, expanding data 2
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6130 elements, expanding data 1
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2689 elements, expanding data 2
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6130 elements, expanding data 1
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2689 elements, expanding data 2
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4972 elements, expanding data 1
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4972 elements, expanding data 1
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4972 elements, expanding data 1
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4972 elements, expanding data 1
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4972 elements, expanding data 1
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4972 elements, expanding data 1
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4972 elements, expanding data 1
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 264 elements, expanding data 2
10:55:48 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:48 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 20:00:00, weight 0.29) and
after (2023-08-22 21:00:00, weight 0.71) in time
10:55:48 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.17929299746167 and -58.95611055806395 degrees.
10:55:48 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.17929299746167 and -58.95611055806395 degrees.
10:55:48 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:48 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:48 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:48 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:48 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:48 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:48 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.767857 (min) 1.06072 (max)
10:55:48 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.828478 (min) 0.94036 (max)
10:55:48 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.00024477 (min) 0.000414861 (max)
10:55:48 DEBUG opendrift.models.basemodel:1524: x_wind: -7.85512 (min) 7.24273 (max)
10:55:48 DEBUG opendrift.models.basemodel:1524: y_wind: -4.05648 (min) 10.9342 (max)
10:55:48 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:48 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:48 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:48 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:48 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:48 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:48 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:48 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 37.6842 (max)
10:55:48 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:48 DEBUG opendrift.models.basemodel:1527: 7083 active elements
10:55:48 DEBUG opendrift.models.basemodel:1538: 59.09371594239377 <- latitude -> 59.19025767940056
10:55:48 DEBUG opendrift.models.basemodel:1543: 10.820717576158852 <- longitude -> 11.043899986647036
10:55:48 DEBUG opendrift.models.basemodel:1548: -35.19541931152344 <- z -> 0.0
10:55:48 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:48 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:48 DEBUG opendrift.models.physics_methods:940: min: 0.107441, mean: 3.521510, max: 9.452065
10:55:48 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.107441, mean: 3.521510, max: 9.452065
10:55:48 DEBUG opendrift.models.basemodel:813: 1340 elements hit coastline, moving back to water
10:55:48 DEBUG opendrift.models.basemodel:836: Lifting 178 elements to seafloor.
10:55:48 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:48 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:48 DEBUG opendrift.models.physics_methods:741: Advecting 44 of 7083 elements above 0.100m with wind-sheared ocean current (0.001263 m/s - 0.137869 m/s)
10:55:48 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:48 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:48 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.11055332807310103
10:55:48 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:48 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:48 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:48 DEBUG opendrift.models.oceandrift:572: 817 elements penetrated seafloor, lifting up
10:55:48 DEBUG opendrift.models.oceandrift:590: 97 elements reached seafloor, set to bottom
10:55:48 DEBUG opendrift.models.basemodel:836: Lifting 97 elements to seafloor.
10:55:48 DEBUG opendrift.models.sedimentdrift:112: Settling 97 elements at seafloor
10:55:48 DEBUG opendrift.models.oceandrift:572: 654 elements penetrated seafloor, lifting up
10:55:48 DEBUG opendrift.models.oceandrift:590: 83 elements reached seafloor, set to bottom
10:55:48 DEBUG opendrift.models.basemodel:836: Lifting 83 elements to seafloor.
10:55:48 DEBUG opendrift.models.sedimentdrift:112: Settling 83 elements at seafloor
10:55:48 DEBUG opendrift.models.oceandrift:572: 650 elements penetrated seafloor, lifting up
10:55:48 DEBUG opendrift.models.oceandrift:590: 77 elements reached seafloor, set to bottom
10:55:48 DEBUG opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
10:55:48 DEBUG opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
10:55:48 DEBUG opendrift.models.oceandrift:572: 617 elements penetrated seafloor, lifting up
10:55:48 DEBUG opendrift.models.oceandrift:590: 93 elements reached seafloor, set to bottom
10:55:48 DEBUG opendrift.models.basemodel:836: Lifting 93 elements to seafloor.
10:55:48 DEBUG opendrift.models.sedimentdrift:112: Settling 93 elements at seafloor
10:55:48 DEBUG opendrift.models.oceandrift:572: 603 elements penetrated seafloor, lifting up
10:55:48 DEBUG opendrift.models.oceandrift:590: 64 elements reached seafloor, set to bottom
10:55:48 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
10:55:48 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
10:55:48 DEBUG opendrift.models.oceandrift:572: 578 elements penetrated seafloor, lifting up
10:55:48 DEBUG opendrift.models.oceandrift:590: 76 elements reached seafloor, set to bottom
10:55:48 DEBUG opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
10:55:48 DEBUG opendrift.models.sedimentdrift:112: Settling 76 elements at seafloor
10:55:48 DEBUG opendrift.models.oceandrift:572: 548 elements penetrated seafloor, lifting up
10:55:48 DEBUG opendrift.models.oceandrift:590: 64 elements reached seafloor, set to bottom
10:55:48 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
10:55:48 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
10:55:48 DEBUG opendrift.models.oceandrift:572: 548 elements penetrated seafloor, lifting up
10:55:48 DEBUG opendrift.models.oceandrift:590: 65 elements reached seafloor, set to bottom
10:55:48 DEBUG opendrift.models.basemodel:836: Lifting 65 elements to seafloor.
10:55:48 DEBUG opendrift.models.sedimentdrift:112: Settling 65 elements at seafloor
10:55:48 DEBUG opendrift.models.oceandrift:572: 534 elements penetrated seafloor, lifting up
10:55:48 DEBUG opendrift.models.oceandrift:590: 77 elements reached seafloor, set to bottom
10:55:48 DEBUG opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
10:55:48 DEBUG opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
10:55:48 DEBUG opendrift.models.oceandrift:572: 521 elements penetrated seafloor, lifting up
10:55:48 DEBUG opendrift.models.oceandrift:590: 82 elements reached seafloor, set to bottom
10:55:48 DEBUG opendrift.models.basemodel:836: Lifting 82 elements to seafloor.
10:55:48 DEBUG opendrift.models.sedimentdrift:112: Settling 82 elements at seafloor
10:55:48 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:48 DEBUG opendrift.models.basemodel:2945: 7083 active elements (0 deactivated)
10:55:48 DEBUG opendrift.models.basemodel:1658: to be seeded: 2917, already seeded 7083
10:55:48 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:48 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:48 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:48 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:48 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:48 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:48 DEBUG opendrift.models.basemodel:1253: Data needed for 7118 elements
10:55:48 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:48 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 20:00:00 (before)
2023-08-22 21:00:00 (after)
10:55:48 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 20:00:00) in space (linearNDFast)
10:55:48 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:48 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:48 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:48 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:48 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:48 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:48 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 38.4289 (max)
10:55:48 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:48 DEBUG opendrift.models.basemodel:1527: 7118 active elements
10:55:48 DEBUG opendrift.models.basemodel:1538: 59.093085317560266 <- latitude -> 59.1903827694505
10:55:48 DEBUG opendrift.models.basemodel:1543: 10.816282827930909 <- longitude -> 11.042366664880108
10:55:48 DEBUG opendrift.models.basemodel:1548: -35.19541931152344 <- z -> 0.0
10:55:48 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:48 DEBUG opendrift.models.basemodel:836: Lifting 559 elements to seafloor.
10:55:48 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:48 INFO opendrift.models.basemodel:2882: 2023-08-22 20:52:19.552469 - step 205 of 216 - 7118 active elements (0 deactivated)
10:55:48 DEBUG opendrift.models.basemodel:2888: 2882 elements scheduled.
10:55:48 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:48 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:48 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:48 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:48 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:48 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:48 DEBUG opendrift.models.basemodel:1253: Data needed for 7118 elements
10:55:48 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:48 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:48 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:48 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:48 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:48 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:48 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:48 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:48 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:48 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:48 DEBUG opendrift.models.basemodel:1253: Data needed for 7118 elements
10:55:48 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:48 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 20:00:00 (before)
2023-08-22 21:00:00 (after)
10:55:49 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:49 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:49 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:49 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:49 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:49 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:49 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x32x7) for time after (2023-08-22 21:00:00)
10:55:49 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 20:00:00) in space (linearNDFast)
10:55:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:49 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 21:00:00) in space (linearNDFast)
10:55:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5047 elements, expanding data 1
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5047 elements, expanding data 1
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5199 elements, expanding data 1
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 936 elements, expanding data 2
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 3
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5199 elements, expanding data 1
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 936 elements, expanding data 2
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 3
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5199 elements, expanding data 1
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 936 elements, expanding data 2
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 3
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5199 elements, expanding data 1
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 936 elements, expanding data 2
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 3
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5199 elements, expanding data 1
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 936 elements, expanding data 2
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 3
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5199 elements, expanding data 1
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 936 elements, expanding data 2
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 3
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5199 elements, expanding data 1
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 936 elements, expanding data 2
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 3
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6176 elements, expanding data 1
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2763 elements, expanding data 2
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6176 elements, expanding data 1
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2763 elements, expanding data 2
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6176 elements, expanding data 1
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2763 elements, expanding data 2
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6176 elements, expanding data 1
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2763 elements, expanding data 2
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6176 elements, expanding data 1
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2763 elements, expanding data 2
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6176 elements, expanding data 1
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2763 elements, expanding data 2
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6176 elements, expanding data 1
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2763 elements, expanding data 2
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5047 elements, expanding data 1
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5047 elements, expanding data 1
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5047 elements, expanding data 1
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5047 elements, expanding data 1
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5047 elements, expanding data 1
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5047 elements, expanding data 1
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5047 elements, expanding data 1
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
10:55:49 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:49 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 20:00:00, weight 0.13) and
after (2023-08-22 21:00:00, weight 0.87) in time
10:55:49 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.183727743857325 and -58.95764387686143 degrees.
10:55:49 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.183727743857325 and -58.95764387686143 degrees.
10:55:49 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:49 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:49 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:49 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:49 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:49 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:49 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.782197 (min) 1.17954 (max)
10:55:49 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.856452 (min) 0.847541 (max)
10:55:49 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000264598 (min) 0.000450844 (max)
10:55:49 DEBUG opendrift.models.basemodel:1524: x_wind: -8.18946 (min) 6.84115 (max)
10:55:49 DEBUG opendrift.models.basemodel:1524: y_wind: -3.33032 (min) 10.8713 (max)
10:55:49 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:49 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:49 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:49 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:49 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:49 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:49 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:49 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 38.4289 (max)
10:55:49 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:49 DEBUG opendrift.models.basemodel:1527: 7118 active elements
10:55:49 DEBUG opendrift.models.basemodel:1538: 59.093085317560266 <- latitude -> 59.1903827694505
10:55:49 DEBUG opendrift.models.basemodel:1543: 10.816282827930909 <- longitude -> 11.042366664880108
10:55:49 DEBUG opendrift.models.basemodel:1548: -35.19541931152344 <- z -> 0.0
10:55:49 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:49 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:49 DEBUG opendrift.models.physics_methods:940: min: 0.098819, mean: 3.574241, max: 9.309243
10:55:49 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.098819, mean: 3.574241, max: 9.309243
10:55:49 DEBUG opendrift.models.basemodel:813: 1379 elements hit coastline, moving back to water
10:55:49 DEBUG opendrift.models.basemodel:836: Lifting 23 elements to seafloor.
10:55:49 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:49 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:49 DEBUG opendrift.models.physics_methods:741: Advecting 40 of 7118 elements above 0.100m with wind-sheared ocean current (0.013036 m/s - 0.128333 m/s)
10:55:49 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:49 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:49 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.10723771971662521
10:55:49 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:49 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:49 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:49 DEBUG opendrift.models.oceandrift:572: 867 elements penetrated seafloor, lifting up
10:55:49 DEBUG opendrift.models.oceandrift:590: 97 elements reached seafloor, set to bottom
10:55:49 DEBUG opendrift.models.basemodel:836: Lifting 97 elements to seafloor.
10:55:49 DEBUG opendrift.models.sedimentdrift:112: Settling 97 elements at seafloor
10:55:49 DEBUG opendrift.models.oceandrift:572: 665 elements penetrated seafloor, lifting up
10:55:49 DEBUG opendrift.models.oceandrift:590: 90 elements reached seafloor, set to bottom
10:55:49 DEBUG opendrift.models.basemodel:836: Lifting 90 elements to seafloor.
10:55:49 DEBUG opendrift.models.sedimentdrift:112: Settling 90 elements at seafloor
10:55:49 DEBUG opendrift.models.oceandrift:572: 620 elements penetrated seafloor, lifting up
10:55:49 DEBUG opendrift.models.oceandrift:590: 84 elements reached seafloor, set to bottom
10:55:49 DEBUG opendrift.models.basemodel:836: Lifting 84 elements to seafloor.
10:55:49 DEBUG opendrift.models.sedimentdrift:112: Settling 84 elements at seafloor
10:55:49 DEBUG opendrift.models.oceandrift:572: 634 elements penetrated seafloor, lifting up
10:55:49 DEBUG opendrift.models.oceandrift:590: 81 elements reached seafloor, set to bottom
10:55:49 DEBUG opendrift.models.basemodel:836: Lifting 81 elements to seafloor.
10:55:49 DEBUG opendrift.models.sedimentdrift:112: Settling 81 elements at seafloor
10:55:49 DEBUG opendrift.models.oceandrift:572: 583 elements penetrated seafloor, lifting up
10:55:49 DEBUG opendrift.models.oceandrift:590: 68 elements reached seafloor, set to bottom
10:55:49 DEBUG opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
10:55:49 DEBUG opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
10:55:49 DEBUG opendrift.models.oceandrift:572: 588 elements penetrated seafloor, lifting up
10:55:49 DEBUG opendrift.models.oceandrift:590: 70 elements reached seafloor, set to bottom
10:55:49 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
10:55:49 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
10:55:49 DEBUG opendrift.models.oceandrift:572: 552 elements penetrated seafloor, lifting up
10:55:49 DEBUG opendrift.models.oceandrift:590: 82 elements reached seafloor, set to bottom
10:55:49 DEBUG opendrift.models.basemodel:836: Lifting 82 elements to seafloor.
10:55:49 DEBUG opendrift.models.sedimentdrift:112: Settling 82 elements at seafloor
10:55:49 DEBUG opendrift.models.oceandrift:572: 559 elements penetrated seafloor, lifting up
10:55:49 DEBUG opendrift.models.oceandrift:590: 61 elements reached seafloor, set to bottom
10:55:49 DEBUG opendrift.models.basemodel:836: Lifting 61 elements to seafloor.
10:55:49 DEBUG opendrift.models.sedimentdrift:112: Settling 61 elements at seafloor
10:55:49 DEBUG opendrift.models.oceandrift:572: 545 elements penetrated seafloor, lifting up
10:55:49 DEBUG opendrift.models.oceandrift:590: 67 elements reached seafloor, set to bottom
10:55:49 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
10:55:49 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
10:55:49 DEBUG opendrift.models.oceandrift:572: 517 elements penetrated seafloor, lifting up
10:55:49 DEBUG opendrift.models.oceandrift:590: 66 elements reached seafloor, set to bottom
10:55:49 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
10:55:49 DEBUG opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
10:55:49 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:49 DEBUG opendrift.models.basemodel:2945: 7118 active elements (0 deactivated)
10:55:49 DEBUG opendrift.models.basemodel:1658: to be seeded: 2882, already seeded 7118
10:55:49 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:49 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:49 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:49 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:49 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:49 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:49 DEBUG opendrift.models.basemodel:1253: Data needed for 7153 elements
10:55:49 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:49 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 21:00:00 (before)
2023-08-22 22:00:00 (after)
10:55:49 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 21:00:00) in space (linearNDFast)
10:55:49 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:49 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:49 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:49 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:49 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:49 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:49 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 38.1152 (max)
10:55:49 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:49 DEBUG opendrift.models.basemodel:1527: 7153 active elements
10:55:49 DEBUG opendrift.models.basemodel:1538: 59.09177372912318 <- latitude -> 59.19040099364458
10:55:49 DEBUG opendrift.models.basemodel:1543: 10.815342073919068 <- longitude -> 11.041849774248831
10:55:49 DEBUG opendrift.models.basemodel:1548: -35.19541931152344 <- z -> 0.0
10:55:49 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:49 DEBUG opendrift.models.basemodel:836: Lifting 542 elements to seafloor.
10:55:49 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:49 INFO opendrift.models.basemodel:2882: 2023-08-22 21:02:19.552469 - step 206 of 216 - 7153 active elements (0 deactivated)
10:55:49 DEBUG opendrift.models.basemodel:2888: 2847 elements scheduled.
10:55:49 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:49 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:49 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:49 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:49 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:49 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:49 DEBUG opendrift.models.basemodel:1253: Data needed for 7153 elements
10:55:49 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:49 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:49 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:49 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:49 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:49 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:49 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:49 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:49 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:49 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:49 DEBUG opendrift.models.basemodel:1253: Data needed for 7153 elements
10:55:49 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:49 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 21:00:00 (before)
2023-08-22 22:00:00 (after)
10:55:50 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:50 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:50 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:50 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:50 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:50 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:50 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x32x7) for time after (2023-08-22 22:00:00)
10:55:50 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 21:00:00) in space (linearNDFast)
10:55:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:50 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 22:00:00) in space (linearNDFast)
10:55:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5084 elements, expanding data 1
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5084 elements, expanding data 1
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5262 elements, expanding data 1
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 930 elements, expanding data 2
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 3
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5262 elements, expanding data 1
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 930 elements, expanding data 2
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 3
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5262 elements, expanding data 1
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 930 elements, expanding data 2
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 3
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5262 elements, expanding data 1
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 930 elements, expanding data 2
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 3
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5262 elements, expanding data 1
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 930 elements, expanding data 2
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 3
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5262 elements, expanding data 1
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 930 elements, expanding data 2
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 3
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5262 elements, expanding data 1
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 930 elements, expanding data 2
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 250 elements, expanding data 3
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6185 elements, expanding data 1
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2792 elements, expanding data 2
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6185 elements, expanding data 1
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2792 elements, expanding data 2
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6185 elements, expanding data 1
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2792 elements, expanding data 2
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6185 elements, expanding data 1
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2792 elements, expanding data 2
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6185 elements, expanding data 1
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2792 elements, expanding data 2
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6185 elements, expanding data 1
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2792 elements, expanding data 2
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6185 elements, expanding data 1
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2792 elements, expanding data 2
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5084 elements, expanding data 1
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5084 elements, expanding data 1
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5084 elements, expanding data 1
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5084 elements, expanding data 1
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5084 elements, expanding data 1
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5084 elements, expanding data 1
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5084 elements, expanding data 1
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 265 elements, expanding data 2
10:55:50 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:50 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 21:00:00, weight 0.96) and
after (2023-08-22 22:00:00, weight 0.04) in time
10:55:50 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.18466849378837 and -58.958160761678485 degrees.
10:55:50 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.18466849378837 and -58.958160761678485 degrees.
10:55:50 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:50 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:50 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:50 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:50 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:50 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:50 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.843994 (min) 0.953383 (max)
10:55:50 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.924933 (min) 0.794505 (max)
10:55:50 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000257226 (min) 0.000457728 (max)
10:55:50 DEBUG opendrift.models.basemodel:1524: x_wind: -9.01006 (min) 6.78451 (max)
10:55:50 DEBUG opendrift.models.basemodel:1524: y_wind: -4.71492 (min) 11.0898 (max)
10:55:50 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:50 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:50 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:50 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:50 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:50 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:50 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:50 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 38.1152 (max)
10:55:50 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:50 DEBUG opendrift.models.basemodel:1527: 7153 active elements
10:55:50 DEBUG opendrift.models.basemodel:1538: 59.09177372912318 <- latitude -> 59.19040099364458
10:55:50 DEBUG opendrift.models.basemodel:1543: 10.815342073919068 <- longitude -> 11.041849774248831
10:55:50 DEBUG opendrift.models.basemodel:1548: -35.19541931152344 <- z -> 0.0
10:55:50 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:50 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:50 DEBUG opendrift.models.physics_methods:940: min: 0.077752, mean: 3.656199, max: 10.033789
10:55:50 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.077752, mean: 3.656199, max: 10.033789
10:55:50 DEBUG opendrift.models.basemodel:813: 1368 elements hit coastline, moving back to water
10:55:50 DEBUG opendrift.models.basemodel:836: Lifting 146 elements to seafloor.
10:55:50 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:50 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:50 DEBUG opendrift.models.physics_methods:741: Advecting 43 of 7153 elements above 0.100m with wind-sheared ocean current (0.002558 m/s - 0.153703 m/s)
10:55:50 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:50 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:50 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.12457948878009795
10:55:50 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:50 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:50 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:50 DEBUG opendrift.models.oceandrift:572: 893 elements penetrated seafloor, lifting up
10:55:50 DEBUG opendrift.models.oceandrift:590: 93 elements reached seafloor, set to bottom
10:55:50 DEBUG opendrift.models.basemodel:836: Lifting 93 elements to seafloor.
10:55:50 DEBUG opendrift.models.sedimentdrift:112: Settling 93 elements at seafloor
10:55:50 DEBUG opendrift.models.oceandrift:572: 697 elements penetrated seafloor, lifting up
10:55:50 DEBUG opendrift.models.oceandrift:590: 101 elements reached seafloor, set to bottom
10:55:50 DEBUG opendrift.models.basemodel:836: Lifting 101 elements to seafloor.
10:55:50 DEBUG opendrift.models.sedimentdrift:112: Settling 101 elements at seafloor
10:55:50 DEBUG opendrift.models.oceandrift:572: 649 elements penetrated seafloor, lifting up
10:55:50 DEBUG opendrift.models.oceandrift:590: 95 elements reached seafloor, set to bottom
10:55:50 DEBUG opendrift.models.basemodel:836: Lifting 95 elements to seafloor.
10:55:50 DEBUG opendrift.models.sedimentdrift:112: Settling 95 elements at seafloor
10:55:50 DEBUG opendrift.models.oceandrift:572: 636 elements penetrated seafloor, lifting up
10:55:50 DEBUG opendrift.models.oceandrift:590: 85 elements reached seafloor, set to bottom
10:55:50 DEBUG opendrift.models.basemodel:836: Lifting 85 elements to seafloor.
10:55:50 DEBUG opendrift.models.sedimentdrift:112: Settling 85 elements at seafloor
10:55:50 DEBUG opendrift.models.oceandrift:572: 624 elements penetrated seafloor, lifting up
10:55:50 DEBUG opendrift.models.oceandrift:590: 84 elements reached seafloor, set to bottom
10:55:50 DEBUG opendrift.models.basemodel:836: Lifting 84 elements to seafloor.
10:55:50 DEBUG opendrift.models.sedimentdrift:112: Settling 84 elements at seafloor
10:55:50 DEBUG opendrift.models.oceandrift:572: 589 elements penetrated seafloor, lifting up
10:55:50 DEBUG opendrift.models.oceandrift:590: 71 elements reached seafloor, set to bottom
10:55:50 DEBUG opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
10:55:50 DEBUG opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
10:55:50 DEBUG opendrift.models.oceandrift:572: 554 elements penetrated seafloor, lifting up
10:55:50 DEBUG opendrift.models.oceandrift:590: 73 elements reached seafloor, set to bottom
10:55:50 DEBUG opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
10:55:50 DEBUG opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
10:55:50 DEBUG opendrift.models.oceandrift:572: 570 elements penetrated seafloor, lifting up
10:55:50 DEBUG opendrift.models.oceandrift:590: 74 elements reached seafloor, set to bottom
10:55:50 DEBUG opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
10:55:50 DEBUG opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
10:55:50 DEBUG opendrift.models.oceandrift:572: 542 elements penetrated seafloor, lifting up
10:55:50 DEBUG opendrift.models.oceandrift:590: 66 elements reached seafloor, set to bottom
10:55:50 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
10:55:50 DEBUG opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
10:55:50 DEBUG opendrift.models.oceandrift:572: 550 elements penetrated seafloor, lifting up
10:55:50 DEBUG opendrift.models.oceandrift:590: 72 elements reached seafloor, set to bottom
10:55:50 DEBUG opendrift.models.basemodel:836: Lifting 72 elements to seafloor.
10:55:50 DEBUG opendrift.models.sedimentdrift:112: Settling 72 elements at seafloor
10:55:50 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:50 DEBUG opendrift.models.basemodel:2945: 7153 active elements (0 deactivated)
10:55:50 DEBUG opendrift.models.basemodel:1658: to be seeded: 2847, already seeded 7153
10:55:50 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:55:50 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:50 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:50 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:50 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:50 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:50 DEBUG opendrift.models.basemodel:1253: Data needed for 7187 elements
10:55:50 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:50 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 21:00:00 (before)
2023-08-22 22:00:00 (after)
10:55:50 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 21:00:00) in space (linearNDFast)
10:55:50 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:50 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:50 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:50 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:50 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:50 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:50 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 38.2525 (max)
10:55:50 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:50 DEBUG opendrift.models.basemodel:1527: 7187 active elements
10:55:50 DEBUG opendrift.models.basemodel:1538: 59.089031524667504 <- latitude -> 59.189808997437325
10:55:50 DEBUG opendrift.models.basemodel:1543: 10.818362553872902 <- longitude -> 11.042019040497017
10:55:50 DEBUG opendrift.models.basemodel:1548: -35.18541931152344 <- z -> 0.0
10:55:50 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:50 DEBUG opendrift.models.basemodel:836: Lifting 551 elements to seafloor.
10:55:50 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:50 INFO opendrift.models.basemodel:2882: 2023-08-22 21:12:19.552469 - step 207 of 216 - 7187 active elements (0 deactivated)
10:55:50 DEBUG opendrift.models.basemodel:2888: 2813 elements scheduled.
10:55:50 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:50 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:50 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:50 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:50 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:50 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:50 DEBUG opendrift.models.basemodel:1253: Data needed for 7187 elements
10:55:50 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:50 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:50 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:50 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:50 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:50 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:50 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:50 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:50 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:50 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:50 DEBUG opendrift.models.basemodel:1253: Data needed for 7187 elements
10:55:50 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:50 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 21:00:00 (before)
2023-08-22 22:00:00 (after)
10:55:51 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:51 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:51 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:51 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:51 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:51 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:51 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x32x7) for time after (2023-08-22 22:00:00)
10:55:51 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 21:00:00) in space (linearNDFast)
10:55:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:51 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 22:00:00) in space (linearNDFast)
10:55:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5110 elements, expanding data 1
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 288 elements, expanding data 2
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5110 elements, expanding data 1
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 288 elements, expanding data 2
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5275 elements, expanding data 1
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 951 elements, expanding data 2
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 256 elements, expanding data 3
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5275 elements, expanding data 1
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 951 elements, expanding data 2
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 256 elements, expanding data 3
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5275 elements, expanding data 1
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 951 elements, expanding data 2
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 256 elements, expanding data 3
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5275 elements, expanding data 1
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 951 elements, expanding data 2
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 256 elements, expanding data 3
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5275 elements, expanding data 1
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 951 elements, expanding data 2
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 256 elements, expanding data 3
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5275 elements, expanding data 1
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 951 elements, expanding data 2
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 256 elements, expanding data 3
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5275 elements, expanding data 1
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 951 elements, expanding data 2
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 256 elements, expanding data 3
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6238 elements, expanding data 1
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2798 elements, expanding data 2
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6238 elements, expanding data 1
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2798 elements, expanding data 2
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6238 elements, expanding data 1
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2798 elements, expanding data 2
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6238 elements, expanding data 1
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2798 elements, expanding data 2
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6238 elements, expanding data 1
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2798 elements, expanding data 2
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6238 elements, expanding data 1
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2798 elements, expanding data 2
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6238 elements, expanding data 1
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2798 elements, expanding data 2
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5110 elements, expanding data 1
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 288 elements, expanding data 2
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5110 elements, expanding data 1
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 288 elements, expanding data 2
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5110 elements, expanding data 1
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 288 elements, expanding data 2
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5110 elements, expanding data 1
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 288 elements, expanding data 2
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5110 elements, expanding data 1
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 288 elements, expanding data 2
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5110 elements, expanding data 1
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 288 elements, expanding data 2
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5110 elements, expanding data 1
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 288 elements, expanding data 2
10:55:51 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:55:51 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 21:00:00, weight 0.79) and
after (2023-08-22 22:00:00, weight 0.21) in time
10:55:51 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.18164801722242 and -58.957991505730135 degrees.
10:55:51 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.18164801722242 and -58.957991505730135 degrees.
10:55:51 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:51 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:51 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:51 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:51 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:51 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:51 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.779871 (min) 1.00443 (max)
10:55:51 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.21332 (min) 0.856881 (max)
10:55:51 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000248006 (min) 0.000429906 (max)
10:55:51 DEBUG opendrift.models.basemodel:1524: x_wind: -8.14829 (min) 7.37151 (max)
10:55:51 DEBUG opendrift.models.basemodel:1524: y_wind: -5.01554 (min) 10.8345 (max)
10:55:51 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:51 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:51 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:51 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:51 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:51 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:51 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:51 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 38.2525 (max)
10:55:51 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:51 DEBUG opendrift.models.basemodel:1527: 7187 active elements
10:55:51 DEBUG opendrift.models.basemodel:1538: 59.089031524667504 <- latitude -> 59.189808997437325
10:55:51 DEBUG opendrift.models.basemodel:1543: 10.818362553872902 <- longitude -> 11.042019040497017
10:55:51 DEBUG opendrift.models.basemodel:1548: -35.18541931152344 <- z -> 0.0
10:55:51 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:51 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:51 DEBUG opendrift.models.physics_methods:940: min: 0.066790, mean: 3.664973, max: 9.605200
10:55:51 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.066790, mean: 3.664973, max: 9.605200
10:55:51 DEBUG opendrift.models.basemodel:813: 1320 elements hit coastline, moving back to water
10:55:51 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:55:51 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:51 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:51 DEBUG opendrift.models.physics_methods:741: Advecting 42 of 7187 elements above 0.100m with wind-sheared ocean current (0.004834 m/s - 0.174562 m/s)
10:55:51 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:51 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:51 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.11416439026268005
10:55:51 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:51 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:51 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:51 DEBUG opendrift.models.oceandrift:572: 896 elements penetrated seafloor, lifting up
10:55:51 DEBUG opendrift.models.oceandrift:590: 101 elements reached seafloor, set to bottom
10:55:51 DEBUG opendrift.models.basemodel:836: Lifting 101 elements to seafloor.
10:55:51 DEBUG opendrift.models.sedimentdrift:112: Settling 101 elements at seafloor
10:55:51 DEBUG opendrift.models.oceandrift:572: 713 elements penetrated seafloor, lifting up
10:55:51 DEBUG opendrift.models.oceandrift:590: 83 elements reached seafloor, set to bottom
10:55:51 DEBUG opendrift.models.basemodel:836: Lifting 83 elements to seafloor.
10:55:51 DEBUG opendrift.models.sedimentdrift:112: Settling 83 elements at seafloor
10:55:51 DEBUG opendrift.models.oceandrift:572: 674 elements penetrated seafloor, lifting up
10:55:51 DEBUG opendrift.models.oceandrift:590: 86 elements reached seafloor, set to bottom
10:55:51 DEBUG opendrift.models.basemodel:836: Lifting 86 elements to seafloor.
10:55:51 DEBUG opendrift.models.sedimentdrift:112: Settling 86 elements at seafloor
10:55:51 DEBUG opendrift.models.oceandrift:572: 626 elements penetrated seafloor, lifting up
10:55:51 DEBUG opendrift.models.oceandrift:590: 87 elements reached seafloor, set to bottom
10:55:51 DEBUG opendrift.models.basemodel:836: Lifting 87 elements to seafloor.
10:55:51 DEBUG opendrift.models.sedimentdrift:112: Settling 87 elements at seafloor
10:55:51 DEBUG opendrift.models.oceandrift:572: 616 elements penetrated seafloor, lifting up
10:55:51 DEBUG opendrift.models.oceandrift:590: 77 elements reached seafloor, set to bottom
10:55:51 DEBUG opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
10:55:51 DEBUG opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
10:55:51 DEBUG opendrift.models.oceandrift:572: 615 elements penetrated seafloor, lifting up
10:55:51 DEBUG opendrift.models.oceandrift:590: 83 elements reached seafloor, set to bottom
10:55:51 DEBUG opendrift.models.basemodel:836: Lifting 83 elements to seafloor.
10:55:51 DEBUG opendrift.models.sedimentdrift:112: Settling 83 elements at seafloor
10:55:51 DEBUG opendrift.models.oceandrift:572: 605 elements penetrated seafloor, lifting up
10:55:51 DEBUG opendrift.models.oceandrift:590: 66 elements reached seafloor, set to bottom
10:55:51 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
10:55:51 DEBUG opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
10:55:51 DEBUG opendrift.models.oceandrift:572: 576 elements penetrated seafloor, lifting up
10:55:51 DEBUG opendrift.models.oceandrift:590: 67 elements reached seafloor, set to bottom
10:55:51 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
10:55:51 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
10:55:51 DEBUG opendrift.models.oceandrift:572: 596 elements penetrated seafloor, lifting up
10:55:51 DEBUG opendrift.models.oceandrift:590: 59 elements reached seafloor, set to bottom
10:55:51 DEBUG opendrift.models.basemodel:836: Lifting 59 elements to seafloor.
10:55:51 DEBUG opendrift.models.sedimentdrift:112: Settling 59 elements at seafloor
10:55:51 DEBUG opendrift.models.oceandrift:572: 573 elements penetrated seafloor, lifting up
10:55:51 DEBUG opendrift.models.oceandrift:590: 74 elements reached seafloor, set to bottom
10:55:51 DEBUG opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
10:55:51 DEBUG opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
10:55:51 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:51 DEBUG opendrift.models.basemodel:2945: 7187 active elements (0 deactivated)
10:55:51 DEBUG opendrift.models.basemodel:1658: to be seeded: 2813, already seeded 7187
10:55:51 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:51 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:51 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:51 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:51 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:51 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:51 DEBUG opendrift.models.basemodel:1253: Data needed for 7222 elements
10:55:51 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:51 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 21:00:00 (before)
2023-08-22 22:00:00 (after)
10:55:51 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 21:00:00) in space (linearNDFast)
10:55:51 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:51 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:51 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:51 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:51 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:51 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:51 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 38.6356 (max)
10:55:51 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:51 DEBUG opendrift.models.basemodel:1527: 7222 active elements
10:55:51 DEBUG opendrift.models.basemodel:1538: 59.09094984110523 <- latitude -> 59.19017579532001
10:55:51 DEBUG opendrift.models.basemodel:1543: 10.815235187979113 <- longitude -> 11.044193983932658
10:55:51 DEBUG opendrift.models.basemodel:1548: -34.87372121885992 <- z -> 0.0
10:55:51 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:51 DEBUG opendrift.models.basemodel:836: Lifting 556 elements to seafloor.
10:55:51 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:51 INFO opendrift.models.basemodel:2882: 2023-08-22 21:22:19.552469 - step 208 of 216 - 7222 active elements (0 deactivated)
10:55:51 DEBUG opendrift.models.basemodel:2888: 2778 elements scheduled.
10:55:51 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:51 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:51 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:51 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:51 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:51 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:51 DEBUG opendrift.models.basemodel:1253: Data needed for 7222 elements
10:55:51 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:51 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:51 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:51 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:51 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:51 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:51 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:51 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:51 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:51 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:51 DEBUG opendrift.models.basemodel:1253: Data needed for 7222 elements
10:55:51 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:51 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 21:00:00 (before)
2023-08-22 22:00:00 (after)
10:55:52 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:52 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:52 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:52 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:52 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:52 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:52 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x32x7) for time after (2023-08-22 22:00:00)
10:55:52 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 21:00:00) in space (linearNDFast)
10:55:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:52 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 22:00:00) in space (linearNDFast)
10:55:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5162 elements, expanding data 1
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 289 elements, expanding data 2
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5162 elements, expanding data 1
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 289 elements, expanding data 2
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5327 elements, expanding data 1
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 931 elements, expanding data 2
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 266 elements, expanding data 3
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5327 elements, expanding data 1
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 931 elements, expanding data 2
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 266 elements, expanding data 3
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5327 elements, expanding data 1
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 931 elements, expanding data 2
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 266 elements, expanding data 3
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5327 elements, expanding data 1
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 931 elements, expanding data 2
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 266 elements, expanding data 3
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5327 elements, expanding data 1
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 931 elements, expanding data 2
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 266 elements, expanding data 3
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5327 elements, expanding data 1
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 931 elements, expanding data 2
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 266 elements, expanding data 3
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5327 elements, expanding data 1
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 931 elements, expanding data 2
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 266 elements, expanding data 3
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6286 elements, expanding data 1
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2848 elements, expanding data 2
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6286 elements, expanding data 1
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2848 elements, expanding data 2
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6286 elements, expanding data 1
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2848 elements, expanding data 2
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6286 elements, expanding data 1
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2848 elements, expanding data 2
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6286 elements, expanding data 1
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2848 elements, expanding data 2
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6286 elements, expanding data 1
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2848 elements, expanding data 2
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6286 elements, expanding data 1
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2848 elements, expanding data 2
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5162 elements, expanding data 1
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 289 elements, expanding data 2
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5162 elements, expanding data 1
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 289 elements, expanding data 2
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5162 elements, expanding data 1
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 289 elements, expanding data 2
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5162 elements, expanding data 1
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 289 elements, expanding data 2
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5162 elements, expanding data 1
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 289 elements, expanding data 2
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5162 elements, expanding data 1
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 289 elements, expanding data 2
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5162 elements, expanding data 1
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 289 elements, expanding data 2
10:55:52 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:55:52 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 21:00:00, weight 0.63) and
after (2023-08-22 22:00:00, weight 0.37) in time
10:55:52 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.18477539620126 and -58.95581656744491 degrees.
10:55:52 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.18477539620126 and -58.95581656744491 degrees.
10:55:52 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:52 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:52 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:52 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:52 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:52 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:52 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -1.03953 (min) 0.839222 (max)
10:55:52 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.924226 (min) 0.795315 (max)
10:55:52 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000295337 (min) 0.000383496 (max)
10:55:52 DEBUG opendrift.models.basemodel:1524: x_wind: -9.05966 (min) 6.32041 (max)
10:55:52 DEBUG opendrift.models.basemodel:1524: y_wind: -5.5654 (min) 11.7516 (max)
10:55:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:52 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:52 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:52 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:52 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:52 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 38.6356 (max)
10:55:52 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:52 DEBUG opendrift.models.basemodel:1527: 7222 active elements
10:55:52 DEBUG opendrift.models.basemodel:1538: 59.09094984110523 <- latitude -> 59.19017579532001
10:55:52 DEBUG opendrift.models.basemodel:1543: 10.815235187979113 <- longitude -> 11.044193983932658
10:55:52 DEBUG opendrift.models.basemodel:1548: -34.18040466308594 <- z -> 0.0
10:55:52 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:52 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:52 DEBUG opendrift.models.physics_methods:940: min: 0.078560, mean: 3.710055, max: 10.560154
10:55:52 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.078560, mean: 3.710055, max: 10.560154
10:55:52 DEBUG opendrift.models.basemodel:813: 1408 elements hit coastline, moving back to water
10:55:52 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
10:55:52 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:52 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:52 DEBUG opendrift.models.physics_methods:741: Advecting 40 of 7222 elements above 0.100m with wind-sheared ocean current (0.004989 m/s - 0.146119 m/s)
10:55:52 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:52 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:52 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.13799257550056454
10:55:52 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:52 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:52 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:52 DEBUG opendrift.models.oceandrift:572: 922 elements penetrated seafloor, lifting up
10:55:52 DEBUG opendrift.models.oceandrift:590: 71 elements reached seafloor, set to bottom
10:55:52 DEBUG opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
10:55:52 DEBUG opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
10:55:52 DEBUG opendrift.models.oceandrift:572: 747 elements penetrated seafloor, lifting up
10:55:52 DEBUG opendrift.models.oceandrift:590: 85 elements reached seafloor, set to bottom
10:55:52 DEBUG opendrift.models.basemodel:836: Lifting 85 elements to seafloor.
10:55:52 DEBUG opendrift.models.sedimentdrift:112: Settling 85 elements at seafloor
10:55:52 DEBUG opendrift.models.oceandrift:572: 723 elements penetrated seafloor, lifting up
10:55:52 DEBUG opendrift.models.oceandrift:590: 84 elements reached seafloor, set to bottom
10:55:52 DEBUG opendrift.models.basemodel:836: Lifting 84 elements to seafloor.
10:55:52 DEBUG opendrift.models.sedimentdrift:112: Settling 84 elements at seafloor
10:55:52 DEBUG opendrift.models.oceandrift:572: 712 elements penetrated seafloor, lifting up
10:55:52 DEBUG opendrift.models.oceandrift:590: 81 elements reached seafloor, set to bottom
10:55:52 DEBUG opendrift.models.basemodel:836: Lifting 81 elements to seafloor.
10:55:52 DEBUG opendrift.models.sedimentdrift:112: Settling 81 elements at seafloor
10:55:52 DEBUG opendrift.models.oceandrift:572: 625 elements penetrated seafloor, lifting up
10:55:52 DEBUG opendrift.models.oceandrift:590: 91 elements reached seafloor, set to bottom
10:55:52 DEBUG opendrift.models.basemodel:836: Lifting 91 elements to seafloor.
10:55:52 DEBUG opendrift.models.sedimentdrift:112: Settling 91 elements at seafloor
10:55:52 DEBUG opendrift.models.oceandrift:572: 582 elements penetrated seafloor, lifting up
10:55:52 DEBUG opendrift.models.oceandrift:590: 74 elements reached seafloor, set to bottom
10:55:52 DEBUG opendrift.models.basemodel:836: Lifting 74 elements to seafloor.
10:55:52 DEBUG opendrift.models.sedimentdrift:112: Settling 74 elements at seafloor
10:55:52 DEBUG opendrift.models.oceandrift:572: 575 elements penetrated seafloor, lifting up
10:55:52 DEBUG opendrift.models.oceandrift:590: 67 elements reached seafloor, set to bottom
10:55:52 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
10:55:52 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
10:55:52 DEBUG opendrift.models.oceandrift:572: 580 elements penetrated seafloor, lifting up
10:55:52 DEBUG opendrift.models.oceandrift:590: 67 elements reached seafloor, set to bottom
10:55:52 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
10:55:52 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
10:55:52 DEBUG opendrift.models.oceandrift:572: 556 elements penetrated seafloor, lifting up
10:55:52 DEBUG opendrift.models.oceandrift:590: 72 elements reached seafloor, set to bottom
10:55:52 DEBUG opendrift.models.basemodel:836: Lifting 72 elements to seafloor.
10:55:52 DEBUG opendrift.models.sedimentdrift:112: Settling 72 elements at seafloor
10:55:52 DEBUG opendrift.models.oceandrift:572: 537 elements penetrated seafloor, lifting up
10:55:52 DEBUG opendrift.models.oceandrift:590: 67 elements reached seafloor, set to bottom
10:55:52 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
10:55:52 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
10:55:52 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:52 DEBUG opendrift.models.basemodel:2945: 7222 active elements (0 deactivated)
10:55:52 DEBUG opendrift.models.basemodel:1658: to be seeded: 2778, already seeded 7222
10:55:52 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:52 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:52 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:52 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:52 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:52 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:52 DEBUG opendrift.models.basemodel:1253: Data needed for 7257 elements
10:55:52 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:52 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 21:00:00 (before)
2023-08-22 22:00:00 (after)
10:55:52 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 21:00:00) in space (linearNDFast)
10:55:52 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:52 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:52 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:52 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:52 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:52 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:52 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 40.3018 (max)
10:55:52 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:52 DEBUG opendrift.models.basemodel:1527: 7257 active elements
10:55:52 DEBUG opendrift.models.basemodel:1538: 59.089933351810984 <- latitude -> 59.18982222953527
10:55:52 DEBUG opendrift.models.basemodel:1543: 10.813043333456926 <- longitude -> 11.046157958986951
10:55:52 DEBUG opendrift.models.basemodel:1548: -32.46513351194798 <- z -> 0.0
10:55:52 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:52 DEBUG opendrift.models.basemodel:836: Lifting 562 elements to seafloor.
10:55:52 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:52 INFO opendrift.models.basemodel:2882: 2023-08-22 21:32:19.552469 - step 209 of 216 - 7257 active elements (0 deactivated)
10:55:52 DEBUG opendrift.models.basemodel:2888: 2743 elements scheduled.
10:55:52 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:52 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:52 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:52 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:52 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:52 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:52 DEBUG opendrift.models.basemodel:1253: Data needed for 7257 elements
10:55:52 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:52 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:52 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:52 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:52 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:52 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:52 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:52 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:52 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:52 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:52 DEBUG opendrift.models.basemodel:1253: Data needed for 7257 elements
10:55:52 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:52 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 21:00:00 (before)
2023-08-22 22:00:00 (after)
10:55:53 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:53 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:53 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:53 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:53 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:53 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:53 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x32x7) for time after (2023-08-22 22:00:00)
10:55:53 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 21:00:00) in space (linearNDFast)
10:55:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:53 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 22:00:00) in space (linearNDFast)
10:55:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5213 elements, expanding data 1
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 273 elements, expanding data 2
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5213 elements, expanding data 1
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 273 elements, expanding data 2
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5377 elements, expanding data 1
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 958 elements, expanding data 2
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 260 elements, expanding data 3
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5377 elements, expanding data 1
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 958 elements, expanding data 2
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 260 elements, expanding data 3
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5377 elements, expanding data 1
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 958 elements, expanding data 2
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 260 elements, expanding data 3
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5377 elements, expanding data 1
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 958 elements, expanding data 2
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 260 elements, expanding data 3
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5377 elements, expanding data 1
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 958 elements, expanding data 2
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 260 elements, expanding data 3
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5377 elements, expanding data 1
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 958 elements, expanding data 2
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 260 elements, expanding data 3
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5377 elements, expanding data 1
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 958 elements, expanding data 2
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 260 elements, expanding data 3
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6317 elements, expanding data 1
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2863 elements, expanding data 2
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6317 elements, expanding data 1
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2863 elements, expanding data 2
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6317 elements, expanding data 1
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2863 elements, expanding data 2
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6317 elements, expanding data 1
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2863 elements, expanding data 2
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6317 elements, expanding data 1
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2863 elements, expanding data 2
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6317 elements, expanding data 1
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2863 elements, expanding data 2
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6317 elements, expanding data 1
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2863 elements, expanding data 2
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5213 elements, expanding data 1
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 273 elements, expanding data 2
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5213 elements, expanding data 1
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 273 elements, expanding data 2
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5213 elements, expanding data 1
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 273 elements, expanding data 2
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5213 elements, expanding data 1
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 273 elements, expanding data 2
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5213 elements, expanding data 1
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 273 elements, expanding data 2
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5213 elements, expanding data 1
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 273 elements, expanding data 2
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5213 elements, expanding data 1
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 273 elements, expanding data 2
10:55:53 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:53 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 21:00:00, weight 0.46) and
after (2023-08-22 22:00:00, weight 0.54) in time
10:55:53 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.18696723593451 and -58.95385261478889 degrees.
10:55:53 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.18696723593451 and -58.95385261478889 degrees.
10:55:53 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:53 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:53 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:53 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:53 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:53 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:53 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.812211 (min) 1.10848 (max)
10:55:53 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.965615 (min) 0.840121 (max)
10:55:53 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000321907 (min) 0.00038666 (max)
10:55:53 DEBUG opendrift.models.basemodel:1524: x_wind: -7.82433 (min) 6.37982 (max)
10:55:53 DEBUG opendrift.models.basemodel:1524: y_wind: -3.15133 (min) 11.9208 (max)
10:55:53 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:53 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:53 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:53 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:53 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:53 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:53 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:53 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 40.3018 (max)
10:55:53 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:53 DEBUG opendrift.models.basemodel:1527: 7257 active elements
10:55:53 DEBUG opendrift.models.basemodel:1538: 59.089933351810984 <- latitude -> 59.18982222953527
10:55:53 DEBUG opendrift.models.basemodel:1543: 10.813043333456926 <- longitude -> 11.046157958986951
10:55:53 DEBUG opendrift.models.basemodel:1548: -32.46513351194798 <- z -> 0.0
10:55:53 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:53 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:53 DEBUG opendrift.models.physics_methods:940: min: 0.080415, mean: 3.781926, max: 10.523060
10:55:53 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.080415, mean: 3.781926, max: 10.523060
10:55:53 DEBUG opendrift.models.basemodel:813: 1410 elements hit coastline, moving back to water
10:55:53 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:55:53 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:53 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:53 DEBUG opendrift.models.physics_methods:741: Advecting 40 of 7257 elements above 0.100m with wind-sheared ocean current (0.000221 m/s - 0.160777 m/s)
10:55:53 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:53 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:53 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.13702486687191007
10:55:53 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:53 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:53 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:53 DEBUG opendrift.models.oceandrift:572: 911 elements penetrated seafloor, lifting up
10:55:53 DEBUG opendrift.models.oceandrift:590: 83 elements reached seafloor, set to bottom
10:55:53 DEBUG opendrift.models.basemodel:836: Lifting 83 elements to seafloor.
10:55:53 DEBUG opendrift.models.sedimentdrift:112: Settling 83 elements at seafloor
10:55:53 DEBUG opendrift.models.oceandrift:572: 764 elements penetrated seafloor, lifting up
10:55:53 DEBUG opendrift.models.oceandrift:590: 105 elements reached seafloor, set to bottom
10:55:53 DEBUG opendrift.models.basemodel:836: Lifting 105 elements to seafloor.
10:55:53 DEBUG opendrift.models.sedimentdrift:112: Settling 105 elements at seafloor
10:55:53 DEBUG opendrift.models.oceandrift:572: 679 elements penetrated seafloor, lifting up
10:55:53 DEBUG opendrift.models.oceandrift:590: 90 elements reached seafloor, set to bottom
10:55:53 DEBUG opendrift.models.basemodel:836: Lifting 90 elements to seafloor.
10:55:53 DEBUG opendrift.models.sedimentdrift:112: Settling 90 elements at seafloor
10:55:53 DEBUG opendrift.models.oceandrift:572: 602 elements penetrated seafloor, lifting up
10:55:53 DEBUG opendrift.models.oceandrift:590: 67 elements reached seafloor, set to bottom
10:55:53 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
10:55:53 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
10:55:53 DEBUG opendrift.models.oceandrift:572: 598 elements penetrated seafloor, lifting up
10:55:53 DEBUG opendrift.models.oceandrift:590: 62 elements reached seafloor, set to bottom
10:55:53 DEBUG opendrift.models.basemodel:836: Lifting 62 elements to seafloor.
10:55:53 DEBUG opendrift.models.sedimentdrift:112: Settling 62 elements at seafloor
10:55:53 DEBUG opendrift.models.oceandrift:572: 616 elements penetrated seafloor, lifting up
10:55:53 DEBUG opendrift.models.oceandrift:590: 71 elements reached seafloor, set to bottom
10:55:53 DEBUG opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
10:55:53 DEBUG opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
10:55:53 DEBUG opendrift.models.oceandrift:572: 569 elements penetrated seafloor, lifting up
10:55:53 DEBUG opendrift.models.oceandrift:590: 77 elements reached seafloor, set to bottom
10:55:53 DEBUG opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
10:55:53 DEBUG opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
10:55:53 DEBUG opendrift.models.oceandrift:572: 596 elements penetrated seafloor, lifting up
10:55:53 DEBUG opendrift.models.oceandrift:590: 66 elements reached seafloor, set to bottom
10:55:53 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
10:55:53 DEBUG opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
10:55:53 DEBUG opendrift.models.oceandrift:572: 593 elements penetrated seafloor, lifting up
10:55:53 DEBUG opendrift.models.oceandrift:590: 83 elements reached seafloor, set to bottom
10:55:53 DEBUG opendrift.models.basemodel:836: Lifting 83 elements to seafloor.
10:55:53 DEBUG opendrift.models.sedimentdrift:112: Settling 83 elements at seafloor
10:55:53 DEBUG opendrift.models.oceandrift:572: 570 elements penetrated seafloor, lifting up
10:55:53 DEBUG opendrift.models.oceandrift:590: 63 elements reached seafloor, set to bottom
10:55:53 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
10:55:53 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
10:55:53 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:53 DEBUG opendrift.models.basemodel:2945: 7257 active elements (0 deactivated)
10:55:53 DEBUG opendrift.models.basemodel:1658: to be seeded: 2743, already seeded 7257
10:55:53 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:55:53 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:53 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:53 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:53 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:53 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:53 DEBUG opendrift.models.basemodel:1253: Data needed for 7291 elements
10:55:53 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:53 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 21:00:00 (before)
2023-08-22 22:00:00 (after)
10:55:53 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 21:00:00) in space (linearNDFast)
10:55:53 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:53 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:53 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:53 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:53 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:53 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:53 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 42.3743 (max)
10:55:53 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:53 DEBUG opendrift.models.basemodel:1527: 7291 active elements
10:55:53 DEBUG opendrift.models.basemodel:1538: 59.091252801432724 <- latitude -> 59.191661646585125
10:55:53 DEBUG opendrift.models.basemodel:1543: 10.810850409172401 <- longitude -> 11.045634013825442
10:55:53 DEBUG opendrift.models.basemodel:1548: -31.12642484369937 <- z -> 0.0
10:55:53 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:53 DEBUG opendrift.models.basemodel:836: Lifting 562 elements to seafloor.
10:55:53 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:53 INFO opendrift.models.basemodel:2882: 2023-08-22 21:42:19.552469 - step 210 of 216 - 7291 active elements (0 deactivated)
10:55:53 DEBUG opendrift.models.basemodel:2888: 2709 elements scheduled.
10:55:53 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:53 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:53 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:53 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:53 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:53 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:53 DEBUG opendrift.models.basemodel:1253: Data needed for 7291 elements
10:55:53 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:53 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:53 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:53 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:53 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:53 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:53 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:53 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:53 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:53 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:53 DEBUG opendrift.models.basemodel:1253: Data needed for 7291 elements
10:55:53 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:53 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 21:00:00 (before)
2023-08-22 22:00:00 (after)
10:55:54 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:54 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:54 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:54 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:54 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:54 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:54 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x32x7) for time after (2023-08-22 22:00:00)
10:55:54 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 21:00:00) in space (linearNDFast)
10:55:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:54 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 22:00:00) in space (linearNDFast)
10:55:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5244 elements, expanding data 1
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 296 elements, expanding data 2
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5244 elements, expanding data 1
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 296 elements, expanding data 2
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5404 elements, expanding data 1
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 970 elements, expanding data 2
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 272 elements, expanding data 3
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5404 elements, expanding data 1
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 970 elements, expanding data 2
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 272 elements, expanding data 3
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5404 elements, expanding data 1
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 970 elements, expanding data 2
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 272 elements, expanding data 3
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5404 elements, expanding data 1
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 970 elements, expanding data 2
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 272 elements, expanding data 3
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5404 elements, expanding data 1
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 970 elements, expanding data 2
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 272 elements, expanding data 3
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5404 elements, expanding data 1
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 970 elements, expanding data 2
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 272 elements, expanding data 3
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5404 elements, expanding data 1
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 970 elements, expanding data 2
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 272 elements, expanding data 3
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 4
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6354 elements, expanding data 1
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2910 elements, expanding data 2
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6354 elements, expanding data 1
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2910 elements, expanding data 2
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6354 elements, expanding data 1
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2910 elements, expanding data 2
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6354 elements, expanding data 1
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2910 elements, expanding data 2
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6354 elements, expanding data 1
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2910 elements, expanding data 2
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6354 elements, expanding data 1
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2910 elements, expanding data 2
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6354 elements, expanding data 1
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2910 elements, expanding data 2
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5244 elements, expanding data 1
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 296 elements, expanding data 2
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5244 elements, expanding data 1
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 296 elements, expanding data 2
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5244 elements, expanding data 1
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 296 elements, expanding data 2
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5244 elements, expanding data 1
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 296 elements, expanding data 2
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5244 elements, expanding data 1
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 296 elements, expanding data 2
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5244 elements, expanding data 1
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 296 elements, expanding data 2
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5244 elements, expanding data 1
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 296 elements, expanding data 2
10:55:54 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 3
10:55:54 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 21:00:00, weight 0.29) and
after (2023-08-22 22:00:00, weight 0.71) in time
10:55:54 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.18916016898115 and -58.954376545554204 degrees.
10:55:54 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.18916016898115 and -58.954376545554204 degrees.
10:55:54 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:54 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:54 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:54 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:54 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:54 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:54 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.769666 (min) 1.08469 (max)
10:55:54 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.984897 (min) 0.927332 (max)
10:55:54 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000337634 (min) 0.000389599 (max)
10:55:54 DEBUG opendrift.models.basemodel:1524: x_wind: -8.862 (min) 7.81113 (max)
10:55:54 DEBUG opendrift.models.basemodel:1524: y_wind: -4.02239 (min) 11.0043 (max)
10:55:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:54 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:54 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:54 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:54 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:54 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 42.3743 (max)
10:55:54 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:54 DEBUG opendrift.models.basemodel:1527: 7291 active elements
10:55:54 DEBUG opendrift.models.basemodel:1538: 59.091252801432724 <- latitude -> 59.191661646585125
10:55:54 DEBUG opendrift.models.basemodel:1543: 10.810850409172401 <- longitude -> 11.045634013825442
10:55:54 DEBUG opendrift.models.basemodel:1548: -31.12642484369937 <- z -> 0.0
10:55:54 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:54 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:54 DEBUG opendrift.models.physics_methods:940: min: 0.149855, mean: 3.797882, max: 10.145220
10:55:54 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.149855, mean: 3.797882, max: 10.145220
10:55:54 DEBUG opendrift.models.basemodel:813: 1411 elements hit coastline, moving back to water
10:55:54 DEBUG opendrift.models.basemodel:836: Lifting 205 elements to seafloor.
10:55:54 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:54 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:54 DEBUG opendrift.models.physics_methods:741: Advecting 45 of 7291 elements above 0.100m with wind-sheared ocean current (0.005207 m/s - 0.148435 m/s)
10:55:54 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:54 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:54 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.12736180777891157
10:55:54 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:54 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:54 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:54 DEBUG opendrift.models.oceandrift:572: 1015 elements penetrated seafloor, lifting up
10:55:54 DEBUG opendrift.models.oceandrift:590: 87 elements reached seafloor, set to bottom
10:55:54 DEBUG opendrift.models.basemodel:836: Lifting 87 elements to seafloor.
10:55:54 DEBUG opendrift.models.sedimentdrift:112: Settling 87 elements at seafloor
10:55:54 DEBUG opendrift.models.oceandrift:572: 792 elements penetrated seafloor, lifting up
10:55:54 DEBUG opendrift.models.oceandrift:590: 90 elements reached seafloor, set to bottom
10:55:54 DEBUG opendrift.models.basemodel:836: Lifting 90 elements to seafloor.
10:55:54 DEBUG opendrift.models.sedimentdrift:112: Settling 90 elements at seafloor
10:55:54 DEBUG opendrift.models.oceandrift:572: 682 elements penetrated seafloor, lifting up
10:55:54 DEBUG opendrift.models.oceandrift:590: 81 elements reached seafloor, set to bottom
10:55:54 DEBUG opendrift.models.basemodel:836: Lifting 81 elements to seafloor.
10:55:54 DEBUG opendrift.models.sedimentdrift:112: Settling 81 elements at seafloor
10:55:54 DEBUG opendrift.models.oceandrift:572: 686 elements penetrated seafloor, lifting up
10:55:54 DEBUG opendrift.models.oceandrift:590: 81 elements reached seafloor, set to bottom
10:55:54 DEBUG opendrift.models.basemodel:836: Lifting 81 elements to seafloor.
10:55:54 DEBUG opendrift.models.sedimentdrift:112: Settling 81 elements at seafloor
10:55:54 DEBUG opendrift.models.oceandrift:572: 660 elements penetrated seafloor, lifting up
10:55:54 DEBUG opendrift.models.oceandrift:590: 76 elements reached seafloor, set to bottom
10:55:54 DEBUG opendrift.models.basemodel:836: Lifting 76 elements to seafloor.
10:55:54 DEBUG opendrift.models.sedimentdrift:112: Settling 76 elements at seafloor
10:55:54 DEBUG opendrift.models.oceandrift:572: 638 elements penetrated seafloor, lifting up
10:55:54 DEBUG opendrift.models.oceandrift:590: 85 elements reached seafloor, set to bottom
10:55:54 DEBUG opendrift.models.basemodel:836: Lifting 85 elements to seafloor.
10:55:54 DEBUG opendrift.models.sedimentdrift:112: Settling 85 elements at seafloor
10:55:54 DEBUG opendrift.models.oceandrift:572: 624 elements penetrated seafloor, lifting up
10:55:54 DEBUG opendrift.models.oceandrift:590: 63 elements reached seafloor, set to bottom
10:55:54 DEBUG opendrift.models.basemodel:836: Lifting 63 elements to seafloor.
10:55:54 DEBUG opendrift.models.sedimentdrift:112: Settling 63 elements at seafloor
10:55:54 DEBUG opendrift.models.oceandrift:572: 616 elements penetrated seafloor, lifting up
10:55:54 DEBUG opendrift.models.oceandrift:590: 75 elements reached seafloor, set to bottom
10:55:54 DEBUG opendrift.models.basemodel:836: Lifting 75 elements to seafloor.
10:55:54 DEBUG opendrift.models.sedimentdrift:112: Settling 75 elements at seafloor
10:55:54 DEBUG opendrift.models.oceandrift:572: 575 elements penetrated seafloor, lifting up
10:55:54 DEBUG opendrift.models.oceandrift:590: 68 elements reached seafloor, set to bottom
10:55:54 DEBUG opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
10:55:54 DEBUG opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
10:55:54 DEBUG opendrift.models.oceandrift:572: 562 elements penetrated seafloor, lifting up
10:55:54 DEBUG opendrift.models.oceandrift:590: 71 elements reached seafloor, set to bottom
10:55:54 DEBUG opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
10:55:54 DEBUG opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
10:55:54 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:54 DEBUG opendrift.models.basemodel:2945: 7291 active elements (0 deactivated)
10:55:54 DEBUG opendrift.models.basemodel:1658: to be seeded: 2709, already seeded 7291
10:55:54 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:54 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:54 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:54 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:54 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:54 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:54 DEBUG opendrift.models.basemodel:1253: Data needed for 7326 elements
10:55:54 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:54 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 21:00:00 (before)
2023-08-22 22:00:00 (after)
10:55:54 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 21:00:00) in space (linearNDFast)
10:55:54 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:54 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:54 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:54 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:54 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:54 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:54 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 42.547 (max)
10:55:54 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:54 DEBUG opendrift.models.basemodel:1527: 7326 active elements
10:55:54 DEBUG opendrift.models.basemodel:1538: 59.092383492693216 <- latitude -> 59.19015768790273
10:55:54 DEBUG opendrift.models.basemodel:1543: 10.81103108797862 <- longitude -> 11.04767420480564
10:55:54 DEBUG opendrift.models.basemodel:1548: -36.84091138817144 <- z -> 0.0
10:55:54 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:54 DEBUG opendrift.models.basemodel:836: Lifting 559 elements to seafloor.
10:55:54 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:54 INFO opendrift.models.basemodel:2882: 2023-08-22 21:52:19.552469 - step 211 of 216 - 7326 active elements (0 deactivated)
10:55:54 DEBUG opendrift.models.basemodel:2888: 2674 elements scheduled.
10:55:54 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:54 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:54 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:54 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:54 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:54 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:54 DEBUG opendrift.models.basemodel:1253: Data needed for 7326 elements
10:55:54 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:54 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:54 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:54 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:54 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:54 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:54 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:54 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:54 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:54 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:54 DEBUG opendrift.models.basemodel:1253: Data needed for 7326 elements
10:55:54 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:54 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 21:00:00 (before)
2023-08-22 22:00:00 (after)
10:55:55 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:55 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:55 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:55 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:55 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:55 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:55 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x32x7) for time after (2023-08-22 22:00:00)
10:55:55 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 21:00:00) in space (linearNDFast)
10:55:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:55 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 22:00:00) in space (linearNDFast)
10:55:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5283 elements, expanding data 1
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 306 elements, expanding data 2
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5283 elements, expanding data 1
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 306 elements, expanding data 2
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5446 elements, expanding data 1
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 973 elements, expanding data 2
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 283 elements, expanding data 3
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5446 elements, expanding data 1
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 973 elements, expanding data 2
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 283 elements, expanding data 3
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5446 elements, expanding data 1
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 973 elements, expanding data 2
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 283 elements, expanding data 3
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5446 elements, expanding data 1
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 973 elements, expanding data 2
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 283 elements, expanding data 3
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5446 elements, expanding data 1
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 973 elements, expanding data 2
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 283 elements, expanding data 3
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5446 elements, expanding data 1
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 973 elements, expanding data 2
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 283 elements, expanding data 3
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5446 elements, expanding data 1
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 973 elements, expanding data 2
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 283 elements, expanding data 3
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6370 elements, expanding data 1
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2931 elements, expanding data 2
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6370 elements, expanding data 1
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2931 elements, expanding data 2
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6370 elements, expanding data 1
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2931 elements, expanding data 2
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6370 elements, expanding data 1
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2931 elements, expanding data 2
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6370 elements, expanding data 1
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2931 elements, expanding data 2
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6370 elements, expanding data 1
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2931 elements, expanding data 2
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6370 elements, expanding data 1
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2931 elements, expanding data 2
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5283 elements, expanding data 1
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 306 elements, expanding data 2
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5283 elements, expanding data 1
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 306 elements, expanding data 2
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5283 elements, expanding data 1
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 306 elements, expanding data 2
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5283 elements, expanding data 1
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 306 elements, expanding data 2
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5283 elements, expanding data 1
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 306 elements, expanding data 2
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5283 elements, expanding data 1
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 306 elements, expanding data 2
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5283 elements, expanding data 1
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 306 elements, expanding data 2
10:55:55 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:55 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 21:00:00, weight 0.13) and
after (2023-08-22 22:00:00, weight 0.87) in time
10:55:55 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.188979487260156 and -58.95233636448258 degrees.
10:55:55 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.188979487260156 and -58.95233636448258 degrees.
10:55:55 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:55 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:55 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:55 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:55 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:55 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:55 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.832382 (min) 0.998332 (max)
10:55:55 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -1.06131 (min) 0.805942 (max)
10:55:55 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000315322 (min) 0.000414865 (max)
10:55:55 DEBUG opendrift.models.basemodel:1524: x_wind: -7.89635 (min) 7.08997 (max)
10:55:55 DEBUG opendrift.models.basemodel:1524: y_wind: -4.8745 (min) 11.6111 (max)
10:55:55 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:55 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:55 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:55 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:55 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:55 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:55 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:55 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 42.547 (max)
10:55:55 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:55 DEBUG opendrift.models.basemodel:1527: 7326 active elements
10:55:55 DEBUG opendrift.models.basemodel:1538: 59.092383492693216 <- latitude -> 59.19015768790273
10:55:55 DEBUG opendrift.models.basemodel:1543: 10.81103108797862 <- longitude -> 11.04767420480564
10:55:55 DEBUG opendrift.models.basemodel:1548: -36.84091138817144 <- z -> 0.0
10:55:55 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:55 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:55 DEBUG opendrift.models.physics_methods:940: min: 0.036758, mean: 3.875596, max: 10.821604
10:55:55 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.036758, mean: 3.875596, max: 10.821604
10:55:55 DEBUG opendrift.models.basemodel:813: 1492 elements hit coastline, moving back to water
10:55:55 DEBUG opendrift.models.basemodel:836: Lifting 18 elements to seafloor.
10:55:55 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:55 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:55 DEBUG opendrift.models.physics_methods:741: Advecting 44 of 7326 elements above 0.100m with wind-sheared ocean current (0.000096 m/s - 0.191234 m/s)
10:55:55 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:55 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:55 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.1449098180776405
10:55:55 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:55 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:55 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:55 DEBUG opendrift.models.oceandrift:572: 901 elements penetrated seafloor, lifting up
10:55:55 DEBUG opendrift.models.oceandrift:590: 101 elements reached seafloor, set to bottom
10:55:55 DEBUG opendrift.models.basemodel:836: Lifting 101 elements to seafloor.
10:55:55 DEBUG opendrift.models.sedimentdrift:112: Settling 101 elements at seafloor
10:55:55 DEBUG opendrift.models.oceandrift:572: 745 elements penetrated seafloor, lifting up
10:55:55 DEBUG opendrift.models.oceandrift:590: 81 elements reached seafloor, set to bottom
10:55:55 DEBUG opendrift.models.basemodel:836: Lifting 81 elements to seafloor.
10:55:55 DEBUG opendrift.models.sedimentdrift:112: Settling 81 elements at seafloor
10:55:55 DEBUG opendrift.models.oceandrift:572: 699 elements penetrated seafloor, lifting up
10:55:55 DEBUG opendrift.models.oceandrift:590: 79 elements reached seafloor, set to bottom
10:55:55 DEBUG opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
10:55:55 DEBUG opendrift.models.sedimentdrift:112: Settling 79 elements at seafloor
10:55:55 DEBUG opendrift.models.oceandrift:572: 684 elements penetrated seafloor, lifting up
10:55:55 DEBUG opendrift.models.oceandrift:590: 86 elements reached seafloor, set to bottom
10:55:55 DEBUG opendrift.models.basemodel:836: Lifting 86 elements to seafloor.
10:55:55 DEBUG opendrift.models.sedimentdrift:112: Settling 86 elements at seafloor
10:55:55 DEBUG opendrift.models.oceandrift:572: 571 elements penetrated seafloor, lifting up
10:55:55 DEBUG opendrift.models.oceandrift:590: 81 elements reached seafloor, set to bottom
10:55:55 DEBUG opendrift.models.basemodel:836: Lifting 81 elements to seafloor.
10:55:55 DEBUG opendrift.models.sedimentdrift:112: Settling 81 elements at seafloor
10:55:55 DEBUG opendrift.models.oceandrift:572: 612 elements penetrated seafloor, lifting up
10:55:55 DEBUG opendrift.models.oceandrift:590: 67 elements reached seafloor, set to bottom
10:55:55 DEBUG opendrift.models.basemodel:836: Lifting 67 elements to seafloor.
10:55:55 DEBUG opendrift.models.sedimentdrift:112: Settling 67 elements at seafloor
10:55:55 DEBUG opendrift.models.oceandrift:572: 629 elements penetrated seafloor, lifting up
10:55:55 DEBUG opendrift.models.oceandrift:590: 70 elements reached seafloor, set to bottom
10:55:55 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
10:55:55 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
10:55:55 DEBUG opendrift.models.oceandrift:572: 600 elements penetrated seafloor, lifting up
10:55:55 DEBUG opendrift.models.oceandrift:590: 73 elements reached seafloor, set to bottom
10:55:55 DEBUG opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
10:55:55 DEBUG opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
10:55:55 DEBUG opendrift.models.oceandrift:572: 608 elements penetrated seafloor, lifting up
10:55:55 DEBUG opendrift.models.oceandrift:590: 66 elements reached seafloor, set to bottom
10:55:55 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
10:55:55 DEBUG opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
10:55:55 DEBUG opendrift.models.oceandrift:572: 588 elements penetrated seafloor, lifting up
10:55:55 DEBUG opendrift.models.oceandrift:590: 71 elements reached seafloor, set to bottom
10:55:55 DEBUG opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
10:55:55 DEBUG opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
10:55:55 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:55 DEBUG opendrift.models.basemodel:2945: 7326 active elements (0 deactivated)
10:55:55 DEBUG opendrift.models.basemodel:1658: to be seeded: 2674, already seeded 7326
10:55:55 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:55 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:55 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:55 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:55 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:55 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:55 DEBUG opendrift.models.basemodel:1253: Data needed for 7361 elements
10:55:55 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:55 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 22:00:00 (before)
2023-08-22 23:00:00 (after)
10:55:55 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 22:00:00) in space (linearNDFast)
10:55:55 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:55 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:55 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:55 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:55 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:55 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:55 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 43.2923 (max)
10:55:55 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:55 DEBUG opendrift.models.basemodel:1527: 7361 active elements
10:55:55 DEBUG opendrift.models.basemodel:1538: 59.093809754041956 <- latitude -> 59.1905116534012
10:55:55 DEBUG opendrift.models.basemodel:1543: 10.810660867303612 <- longitude -> 11.05041322897431
10:55:55 DEBUG opendrift.models.basemodel:1548: -35.18820367898773 <- z -> 0.0
10:55:55 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:55 DEBUG opendrift.models.basemodel:836: Lifting 584 elements to seafloor.
10:55:55 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:55 INFO opendrift.models.basemodel:2882: 2023-08-22 22:02:19.552469 - step 212 of 216 - 7361 active elements (0 deactivated)
10:55:55 DEBUG opendrift.models.basemodel:2888: 2639 elements scheduled.
10:55:55 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:55 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:55 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:55 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:55 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:55 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:55 DEBUG opendrift.models.basemodel:1253: Data needed for 7361 elements
10:55:55 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:55 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:55 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:55 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:55 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:55 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:55 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:55 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:55 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:55 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:55 DEBUG opendrift.models.basemodel:1253: Data needed for 7361 elements
10:55:55 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:55 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 22:00:00 (before)
2023-08-22 23:00:00 (after)
10:55:56 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:56 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:56 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:56 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:56 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:56 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:56 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x32x7) for time after (2023-08-22 23:00:00)
10:55:56 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 22:00:00) in space (linearNDFast)
10:55:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:56 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 23:00:00) in space (linearNDFast)
10:55:56 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5342 elements, expanding data 1
10:55:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 307 elements, expanding data 2
10:55:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5342 elements, expanding data 1
10:55:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 307 elements, expanding data 2
10:55:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5498 elements, expanding data 1
10:55:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 997 elements, expanding data 2
10:55:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 289 elements, expanding data 3
10:55:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5498 elements, expanding data 1
10:55:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 997 elements, expanding data 2
10:55:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 289 elements, expanding data 3
10:55:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5498 elements, expanding data 1
10:55:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 997 elements, expanding data 2
10:55:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 289 elements, expanding data 3
10:55:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5498 elements, expanding data 1
10:55:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 997 elements, expanding data 2
10:55:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 289 elements, expanding data 3
10:55:56 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5498 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 997 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 289 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5498 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 997 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 289 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5498 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 997 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 289 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2 elements, expanding data 4
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6422 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2977 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6422 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2977 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6422 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2977 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6422 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2977 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6422 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2977 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6422 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2977 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6422 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2977 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5342 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 307 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5342 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 307 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5342 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 307 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5342 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 307 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5342 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 307 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5342 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 307 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5342 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 307 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 4 elements, expanding data 3
10:55:57 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 22:00:00, weight 0.96) and
after (2023-08-22 23:00:00, weight 0.04) in time
10:55:57 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.18934971091508 and -58.949597340001404 degrees.
10:55:57 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.18934971091508 and -58.949597340001404 degrees.
10:55:57 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:57 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:57 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:57 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:57 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:57 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:57 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.717378 (min) 1.07271 (max)
10:55:57 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.90643 (min) 0.962238 (max)
10:55:57 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000331094 (min) 0.000402798 (max)
10:55:57 DEBUG opendrift.models.basemodel:1524: x_wind: -7.57279 (min) 8.8847 (max)
10:55:57 DEBUG opendrift.models.basemodel:1524: y_wind: -3.26393 (min) 11.5644 (max)
10:55:57 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:57 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:57 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:57 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:57 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:57 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:57 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:57 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 43.2923 (max)
10:55:57 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:57 DEBUG opendrift.models.basemodel:1527: 7361 active elements
10:55:57 DEBUG opendrift.models.basemodel:1538: 59.093809754041956 <- latitude -> 59.1905116534012
10:55:57 DEBUG opendrift.models.basemodel:1543: 10.810660867303612 <- longitude -> 11.05041322897431
10:55:57 DEBUG opendrift.models.basemodel:1548: -35.18820367898773 <- z -> 0.0
10:55:57 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:57 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:57 DEBUG opendrift.models.physics_methods:940: min: 0.061094, mean: 3.845065, max: 10.116854
10:55:57 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.061094, mean: 3.845065, max: 10.116854
10:55:57 DEBUG opendrift.models.basemodel:813: 1475 elements hit coastline, moving back to water
10:55:57 DEBUG opendrift.models.basemodel:836: Lifting 177 elements to seafloor.
10:55:57 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:57 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:57 DEBUG opendrift.models.physics_methods:741: Advecting 46 of 7361 elements above 0.100m with wind-sheared ocean current (0.005148 m/s - 0.192993 m/s)
10:55:57 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:57 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:57 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.12665062288673398
10:55:57 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:57 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:57 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:57 DEBUG opendrift.models.oceandrift:572: 945 elements penetrated seafloor, lifting up
10:55:57 DEBUG opendrift.models.oceandrift:590: 105 elements reached seafloor, set to bottom
10:55:57 DEBUG opendrift.models.basemodel:836: Lifting 105 elements to seafloor.
10:55:57 DEBUG opendrift.models.sedimentdrift:112: Settling 105 elements at seafloor
10:55:57 DEBUG opendrift.models.oceandrift:572: 735 elements penetrated seafloor, lifting up
10:55:57 DEBUG opendrift.models.oceandrift:590: 91 elements reached seafloor, set to bottom
10:55:57 DEBUG opendrift.models.basemodel:836: Lifting 91 elements to seafloor.
10:55:57 DEBUG opendrift.models.sedimentdrift:112: Settling 91 elements at seafloor
10:55:57 DEBUG opendrift.models.oceandrift:572: 670 elements penetrated seafloor, lifting up
10:55:57 DEBUG opendrift.models.oceandrift:590: 81 elements reached seafloor, set to bottom
10:55:57 DEBUG opendrift.models.basemodel:836: Lifting 81 elements to seafloor.
10:55:57 DEBUG opendrift.models.sedimentdrift:112: Settling 81 elements at seafloor
10:55:57 DEBUG opendrift.models.oceandrift:572: 635 elements penetrated seafloor, lifting up
10:55:57 DEBUG opendrift.models.oceandrift:590: 66 elements reached seafloor, set to bottom
10:55:57 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
10:55:57 DEBUG opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
10:55:57 DEBUG opendrift.models.oceandrift:572: 666 elements penetrated seafloor, lifting up
10:55:57 DEBUG opendrift.models.oceandrift:590: 68 elements reached seafloor, set to bottom
10:55:57 DEBUG opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
10:55:57 DEBUG opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
10:55:57 DEBUG opendrift.models.oceandrift:572: 633 elements penetrated seafloor, lifting up
10:55:57 DEBUG opendrift.models.oceandrift:590: 84 elements reached seafloor, set to bottom
10:55:57 DEBUG opendrift.models.basemodel:836: Lifting 84 elements to seafloor.
10:55:57 DEBUG opendrift.models.sedimentdrift:112: Settling 84 elements at seafloor
10:55:57 DEBUG opendrift.models.oceandrift:572: 648 elements penetrated seafloor, lifting up
10:55:57 DEBUG opendrift.models.oceandrift:590: 70 elements reached seafloor, set to bottom
10:55:57 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
10:55:57 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
10:55:57 DEBUG opendrift.models.oceandrift:572: 628 elements penetrated seafloor, lifting up
10:55:57 DEBUG opendrift.models.oceandrift:590: 70 elements reached seafloor, set to bottom
10:55:57 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
10:55:57 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
10:55:57 DEBUG opendrift.models.oceandrift:572: 597 elements penetrated seafloor, lifting up
10:55:57 DEBUG opendrift.models.oceandrift:590: 64 elements reached seafloor, set to bottom
10:55:57 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
10:55:57 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
10:55:57 DEBUG opendrift.models.oceandrift:572: 579 elements penetrated seafloor, lifting up
10:55:57 DEBUG opendrift.models.oceandrift:590: 83 elements reached seafloor, set to bottom
10:55:57 DEBUG opendrift.models.basemodel:836: Lifting 83 elements to seafloor.
10:55:57 DEBUG opendrift.models.sedimentdrift:112: Settling 83 elements at seafloor
10:55:57 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:57 DEBUG opendrift.models.basemodel:2945: 7361 active elements (0 deactivated)
10:55:57 DEBUG opendrift.models.basemodel:1658: to be seeded: 2639, already seeded 7361
10:55:57 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:57 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:57 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:57 DEBUG opendrift.models.basemodel:1253: Data needed for 7396 elements
10:55:57 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:57 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 22:00:00 (before)
2023-08-22 23:00:00 (after)
10:55:57 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 22:00:00) in space (linearNDFast)
10:55:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:57 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:57 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:57 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:57 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:57 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:57 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 43.1855 (max)
10:55:57 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:57 DEBUG opendrift.models.basemodel:1527: 7396 active elements
10:55:57 DEBUG opendrift.models.basemodel:1538: 59.09213364544624 <- latitude -> 59.19066771565181
10:55:57 DEBUG opendrift.models.basemodel:1543: 10.808903801179735 <- longitude -> 11.049720467307328
10:55:57 DEBUG opendrift.models.basemodel:1548: -37.70873377804436 <- z -> 0.0
10:55:57 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:57 DEBUG opendrift.models.basemodel:836: Lifting 526 elements to seafloor.
10:55:57 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:57 INFO opendrift.models.basemodel:2882: 2023-08-22 22:12:19.552469 - step 213 of 216 - 7396 active elements (0 deactivated)
10:55:57 DEBUG opendrift.models.basemodel:2888: 2604 elements scheduled.
10:55:57 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:57 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:57 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:57 DEBUG opendrift.models.basemodel:1253: Data needed for 7396 elements
10:55:57 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:57 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:57 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:57 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:57 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:57 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:57 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:57 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:57 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:57 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:57 DEBUG opendrift.models.basemodel:1253: Data needed for 7396 elements
10:55:57 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:57 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 22:00:00 (before)
2023-08-22 23:00:00 (after)
10:55:57 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:57 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:57 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:57 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:57 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:57 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:57 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x33x7) for time after (2023-08-22 23:00:00)
10:55:57 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 22:00:00) in space (linearNDFast)
10:55:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:57 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 23:00:00) in space (linearNDFast)
10:55:57 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5388 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 302 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5388 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 302 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5538 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1004 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 280 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5538 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1004 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 280 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5538 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1004 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 280 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5538 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1004 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 280 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5538 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1004 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 280 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5538 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1004 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 280 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5538 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1004 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 280 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6446 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2993 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6446 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2993 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6446 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2993 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6446 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2993 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6446 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2993 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6446 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2993 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6446 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2993 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5388 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 302 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5388 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 302 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5388 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 302 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5388 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 302 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5388 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 302 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5388 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 302 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5388 elements, expanding data 1
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 302 elements, expanding data 2
10:55:57 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:57 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 22:00:00, weight 0.79) and
after (2023-08-22 23:00:00, weight 0.21) in time
10:55:58 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.19110676874216 and -58.950290098415714 degrees.
10:55:58 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.19110676874216 and -58.950290098415714 degrees.
10:55:58 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:58 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:58 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:58 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:58 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:58 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:58 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.746042 (min) 0.967851 (max)
10:55:58 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.883956 (min) 0.771841 (max)
10:55:58 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000333975 (min) 0.000364408 (max)
10:55:58 DEBUG opendrift.models.basemodel:1524: x_wind: -10.3977 (min) 8.06026 (max)
10:55:58 DEBUG opendrift.models.basemodel:1524: y_wind: -3.85516 (min) 11.7343 (max)
10:55:58 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:58 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:58 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:58 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:58 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:58 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:58 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:58 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 43.1855 (max)
10:55:58 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:58 DEBUG opendrift.models.basemodel:1527: 7396 active elements
10:55:58 DEBUG opendrift.models.basemodel:1538: 59.09213364544624 <- latitude -> 59.19066771565181
10:55:58 DEBUG opendrift.models.basemodel:1543: 10.808903801179735 <- longitude -> 11.049720467307328
10:55:58 DEBUG opendrift.models.basemodel:1548: -37.70873377804436 <- z -> 0.0
10:55:58 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:58 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:58 DEBUG opendrift.models.physics_methods:940: min: 0.065371, mean: 3.874685, max: 11.060285
10:55:58 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.065371, mean: 3.874685, max: 11.060285
10:55:58 DEBUG opendrift.models.basemodel:813: 1476 elements hit coastline, moving back to water
10:55:58 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:55:58 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:58 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:58 DEBUG opendrift.models.physics_methods:741: Advecting 45 of 7396 elements above 0.100m with wind-sheared ocean current (0.002570 m/s - 0.190321 m/s)
10:55:58 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:58 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:58 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.1513723994990158
10:55:58 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:58 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:58 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:58 DEBUG opendrift.models.oceandrift:572: 945 elements penetrated seafloor, lifting up
10:55:58 DEBUG opendrift.models.oceandrift:590: 83 elements reached seafloor, set to bottom
10:55:58 DEBUG opendrift.models.basemodel:836: Lifting 83 elements to seafloor.
10:55:58 DEBUG opendrift.models.sedimentdrift:112: Settling 83 elements at seafloor
10:55:58 DEBUG opendrift.models.oceandrift:572: 739 elements penetrated seafloor, lifting up
10:55:58 DEBUG opendrift.models.oceandrift:590: 106 elements reached seafloor, set to bottom
10:55:58 DEBUG opendrift.models.basemodel:836: Lifting 106 elements to seafloor.
10:55:58 DEBUG opendrift.models.sedimentdrift:112: Settling 106 elements at seafloor
10:55:58 DEBUG opendrift.models.oceandrift:572: 726 elements penetrated seafloor, lifting up
10:55:58 DEBUG opendrift.models.oceandrift:590: 80 elements reached seafloor, set to bottom
10:55:58 DEBUG opendrift.models.basemodel:836: Lifting 80 elements to seafloor.
10:55:58 DEBUG opendrift.models.sedimentdrift:112: Settling 80 elements at seafloor
10:55:58 DEBUG opendrift.models.oceandrift:572: 710 elements penetrated seafloor, lifting up
10:55:58 DEBUG opendrift.models.oceandrift:590: 96 elements reached seafloor, set to bottom
10:55:58 DEBUG opendrift.models.basemodel:836: Lifting 96 elements to seafloor.
10:55:58 DEBUG opendrift.models.sedimentdrift:112: Settling 96 elements at seafloor
10:55:58 DEBUG opendrift.models.oceandrift:572: 664 elements penetrated seafloor, lifting up
10:55:58 DEBUG opendrift.models.oceandrift:590: 89 elements reached seafloor, set to bottom
10:55:58 DEBUG opendrift.models.basemodel:836: Lifting 89 elements to seafloor.
10:55:58 DEBUG opendrift.models.sedimentdrift:112: Settling 89 elements at seafloor
10:55:58 DEBUG opendrift.models.oceandrift:572: 640 elements penetrated seafloor, lifting up
10:55:58 DEBUG opendrift.models.oceandrift:590: 82 elements reached seafloor, set to bottom
10:55:58 DEBUG opendrift.models.basemodel:836: Lifting 82 elements to seafloor.
10:55:58 DEBUG opendrift.models.sedimentdrift:112: Settling 82 elements at seafloor
10:55:58 DEBUG opendrift.models.oceandrift:572: 641 elements penetrated seafloor, lifting up
10:55:58 DEBUG opendrift.models.oceandrift:590: 69 elements reached seafloor, set to bottom
10:55:58 DEBUG opendrift.models.basemodel:836: Lifting 69 elements to seafloor.
10:55:58 DEBUG opendrift.models.sedimentdrift:112: Settling 69 elements at seafloor
10:55:58 DEBUG opendrift.models.oceandrift:572: 617 elements penetrated seafloor, lifting up
10:55:58 DEBUG opendrift.models.oceandrift:590: 80 elements reached seafloor, set to bottom
10:55:58 DEBUG opendrift.models.basemodel:836: Lifting 80 elements to seafloor.
10:55:58 DEBUG opendrift.models.sedimentdrift:112: Settling 80 elements at seafloor
10:55:58 DEBUG opendrift.models.oceandrift:572: 623 elements penetrated seafloor, lifting up
10:55:58 DEBUG opendrift.models.oceandrift:590: 68 elements reached seafloor, set to bottom
10:55:58 DEBUG opendrift.models.basemodel:836: Lifting 68 elements to seafloor.
10:55:58 DEBUG opendrift.models.sedimentdrift:112: Settling 68 elements at seafloor
10:55:58 DEBUG opendrift.models.oceandrift:572: 565 elements penetrated seafloor, lifting up
10:55:58 DEBUG opendrift.models.oceandrift:590: 73 elements reached seafloor, set to bottom
10:55:58 DEBUG opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
10:55:58 DEBUG opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
10:55:58 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:58 DEBUG opendrift.models.basemodel:2945: 7396 active elements (0 deactivated)
10:55:58 DEBUG opendrift.models.basemodel:1658: to be seeded: 2604, already seeded 7396
10:55:58 DEBUG opendrift.models.basemodel:1676: Released 34 new elements.
10:55:58 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:58 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:58 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:58 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:58 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:58 DEBUG opendrift.models.basemodel:1253: Data needed for 7430 elements
10:55:58 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:58 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 22:00:00 (before)
2023-08-22 23:00:00 (after)
10:55:58 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 22:00:00) in space (linearNDFast)
10:55:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:58 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:58 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:58 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:58 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:58 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:58 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 43.8912 (max)
10:55:58 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:58 DEBUG opendrift.models.basemodel:1527: 7430 active elements
10:55:58 DEBUG opendrift.models.basemodel:1538: 59.0929207226112 <- latitude -> 59.18987217097572
10:55:58 DEBUG opendrift.models.basemodel:1543: 10.804053142157567 <- longitude -> 11.058486490186445
10:55:58 DEBUG opendrift.models.basemodel:1548: -34.824440256983856 <- z -> 0.0
10:55:58 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:58 DEBUG opendrift.models.basemodel:836: Lifting 572 elements to seafloor.
10:55:58 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:58 INFO opendrift.models.basemodel:2882: 2023-08-22 22:22:19.552469 - step 214 of 216 - 7430 active elements (0 deactivated)
10:55:58 DEBUG opendrift.models.basemodel:2888: 2570 elements scheduled.
10:55:58 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:58 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:58 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:58 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:58 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:58 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:58 DEBUG opendrift.models.basemodel:1253: Data needed for 7430 elements
10:55:58 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:58 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:58 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:58 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:58 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:58 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:58 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:58 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:58 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:58 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:58 DEBUG opendrift.models.basemodel:1253: Data needed for 7430 elements
10:55:58 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:58 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 22:00:00 (before)
2023-08-22 23:00:00 (after)
10:55:58 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:55:58 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:55:58 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:55:58 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:55:58 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:55:58 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:55:58 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x34x7) for time after (2023-08-22 23:00:00)
10:55:58 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 22:00:00) in space (linearNDFast)
10:55:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:58 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 23:00:00) in space (linearNDFast)
10:55:58 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5372 elements, expanding data 1
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 300 elements, expanding data 2
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5372 elements, expanding data 1
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 300 elements, expanding data 2
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5531 elements, expanding data 1
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1027 elements, expanding data 2
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 279 elements, expanding data 3
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5531 elements, expanding data 1
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1027 elements, expanding data 2
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 279 elements, expanding data 3
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5531 elements, expanding data 1
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1027 elements, expanding data 2
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 279 elements, expanding data 3
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5531 elements, expanding data 1
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1027 elements, expanding data 2
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 279 elements, expanding data 3
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5531 elements, expanding data 1
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1027 elements, expanding data 2
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 279 elements, expanding data 3
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5531 elements, expanding data 1
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1027 elements, expanding data 2
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 279 elements, expanding data 3
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5531 elements, expanding data 1
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1027 elements, expanding data 2
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 279 elements, expanding data 3
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3 elements, expanding data 4
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6450 elements, expanding data 1
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2990 elements, expanding data 2
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6450 elements, expanding data 1
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2990 elements, expanding data 2
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6450 elements, expanding data 1
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2990 elements, expanding data 2
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6450 elements, expanding data 1
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2990 elements, expanding data 2
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6450 elements, expanding data 1
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2990 elements, expanding data 2
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6450 elements, expanding data 1
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2990 elements, expanding data 2
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6450 elements, expanding data 1
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2990 elements, expanding data 2
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5372 elements, expanding data 1
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 300 elements, expanding data 2
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5372 elements, expanding data 1
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 300 elements, expanding data 2
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5372 elements, expanding data 1
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 300 elements, expanding data 2
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5372 elements, expanding data 1
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 300 elements, expanding data 2
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5372 elements, expanding data 1
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 300 elements, expanding data 2
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5372 elements, expanding data 1
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 300 elements, expanding data 2
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5372 elements, expanding data 1
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 300 elements, expanding data 2
10:55:58 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 3
10:55:58 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 22:00:00, weight 0.63) and
after (2023-08-22 23:00:00, weight 0.37) in time
10:55:59 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.19595743327235 and -58.941524065640955 degrees.
10:55:59 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.19595743327235 and -58.941524065640955 degrees.
10:55:59 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:59 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:59 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:59 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:55:59 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:55:59 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:59 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.813422 (min) 1.02171 (max)
10:55:59 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.85913 (min) 0.975991 (max)
10:55:59 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000322984 (min) 0.000319606 (max)
10:55:59 DEBUG opendrift.models.basemodel:1524: x_wind: -7.62074 (min) 8.57848 (max)
10:55:59 DEBUG opendrift.models.basemodel:1524: y_wind: -4.20446 (min) 11.0807 (max)
10:55:59 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:55:59 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:55:59 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:55:59 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:55:59 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:55:59 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:55:59 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:55:59 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 43.8912 (max)
10:55:59 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:59 DEBUG opendrift.models.basemodel:1527: 7430 active elements
10:55:59 DEBUG opendrift.models.basemodel:1538: 59.0929207226112 <- latitude -> 59.18987217097572
10:55:59 DEBUG opendrift.models.basemodel:1543: 10.804053142157567 <- longitude -> 11.058486490186445
10:55:59 DEBUG opendrift.models.basemodel:1548: -34.824440256983856 <- z -> 0.0
10:55:59 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:59 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:55:59 DEBUG opendrift.models.physics_methods:940: min: 0.028423, mean: 3.856342, max: 9.483858
10:55:59 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.028423, mean: 3.856342, max: 9.483858
10:55:59 DEBUG opendrift.models.basemodel:813: 1578 elements hit coastline, moving back to water
10:55:59 DEBUG opendrift.models.basemodel:836: Lifting 34 elements to seafloor.
10:55:59 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:55:59 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:55:59 DEBUG opendrift.models.physics_methods:741: Advecting 43 of 7430 elements above 0.100m with wind-sheared ocean current (0.000812 m/s - 0.161458 m/s)
10:55:59 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:55:59 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:55:59 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.11129824355466841
10:55:59 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:55:59 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:55:59 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:55:59 DEBUG opendrift.models.oceandrift:572: 955 elements penetrated seafloor, lifting up
10:55:59 DEBUG opendrift.models.oceandrift:590: 97 elements reached seafloor, set to bottom
10:55:59 DEBUG opendrift.models.basemodel:836: Lifting 97 elements to seafloor.
10:55:59 DEBUG opendrift.models.sedimentdrift:112: Settling 97 elements at seafloor
10:55:59 DEBUG opendrift.models.oceandrift:572: 820 elements penetrated seafloor, lifting up
10:55:59 DEBUG opendrift.models.oceandrift:590: 103 elements reached seafloor, set to bottom
10:55:59 DEBUG opendrift.models.basemodel:836: Lifting 103 elements to seafloor.
10:55:59 DEBUG opendrift.models.sedimentdrift:112: Settling 103 elements at seafloor
10:55:59 DEBUG opendrift.models.oceandrift:572: 675 elements penetrated seafloor, lifting up
10:55:59 DEBUG opendrift.models.oceandrift:590: 88 elements reached seafloor, set to bottom
10:55:59 DEBUG opendrift.models.basemodel:836: Lifting 88 elements to seafloor.
10:55:59 DEBUG opendrift.models.sedimentdrift:112: Settling 88 elements at seafloor
10:55:59 DEBUG opendrift.models.oceandrift:572: 619 elements penetrated seafloor, lifting up
10:55:59 DEBUG opendrift.models.oceandrift:590: 78 elements reached seafloor, set to bottom
10:55:59 DEBUG opendrift.models.basemodel:836: Lifting 78 elements to seafloor.
10:55:59 DEBUG opendrift.models.sedimentdrift:112: Settling 78 elements at seafloor
10:55:59 DEBUG opendrift.models.oceandrift:572: 651 elements penetrated seafloor, lifting up
10:55:59 DEBUG opendrift.models.oceandrift:590: 81 elements reached seafloor, set to bottom
10:55:59 DEBUG opendrift.models.basemodel:836: Lifting 81 elements to seafloor.
10:55:59 DEBUG opendrift.models.sedimentdrift:112: Settling 81 elements at seafloor
10:55:59 DEBUG opendrift.models.oceandrift:572: 647 elements penetrated seafloor, lifting up
10:55:59 DEBUG opendrift.models.oceandrift:590: 73 elements reached seafloor, set to bottom
10:55:59 DEBUG opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
10:55:59 DEBUG opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
10:55:59 DEBUG opendrift.models.oceandrift:572: 608 elements penetrated seafloor, lifting up
10:55:59 DEBUG opendrift.models.oceandrift:590: 72 elements reached seafloor, set to bottom
10:55:59 DEBUG opendrift.models.basemodel:836: Lifting 72 elements to seafloor.
10:55:59 DEBUG opendrift.models.sedimentdrift:112: Settling 72 elements at seafloor
10:55:59 DEBUG opendrift.models.oceandrift:572: 644 elements penetrated seafloor, lifting up
10:55:59 DEBUG opendrift.models.oceandrift:590: 71 elements reached seafloor, set to bottom
10:55:59 DEBUG opendrift.models.basemodel:836: Lifting 71 elements to seafloor.
10:55:59 DEBUG opendrift.models.sedimentdrift:112: Settling 71 elements at seafloor
10:55:59 DEBUG opendrift.models.oceandrift:572: 631 elements penetrated seafloor, lifting up
10:55:59 DEBUG opendrift.models.oceandrift:590: 70 elements reached seafloor, set to bottom
10:55:59 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
10:55:59 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
10:55:59 DEBUG opendrift.models.oceandrift:572: 568 elements penetrated seafloor, lifting up
10:55:59 DEBUG opendrift.models.oceandrift:590: 79 elements reached seafloor, set to bottom
10:55:59 DEBUG opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
10:55:59 DEBUG opendrift.models.sedimentdrift:112: Settling 79 elements at seafloor
10:55:59 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:55:59 DEBUG opendrift.models.basemodel:2945: 7430 active elements (0 deactivated)
10:55:59 DEBUG opendrift.models.basemodel:1658: to be seeded: 2570, already seeded 7430
10:55:59 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:55:59 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:59 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:55:59 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:59 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:59 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:59 DEBUG opendrift.models.basemodel:1253: Data needed for 7465 elements
10:55:59 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:59 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 22:00:00 (before)
2023-08-22 23:00:00 (after)
10:55:59 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 22:00:00) in space (linearNDFast)
10:55:59 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:55:59 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:55:59 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:59 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:55:59 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:55:59 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:55:59 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 44.4802 (max)
10:55:59 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:55:59 DEBUG opendrift.models.basemodel:1527: 7465 active elements
10:55:59 DEBUG opendrift.models.basemodel:1538: 59.09241210097568 <- latitude -> 59.19160708710382
10:55:59 DEBUG opendrift.models.basemodel:1543: 10.803241571917555 <- longitude -> 11.055053741737135
10:55:59 DEBUG opendrift.models.basemodel:1548: -30.50284508142275 <- z -> 0.0
10:55:59 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:55:59 DEBUG opendrift.models.basemodel:836: Lifting 510 elements to seafloor.
10:55:59 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:55:59 INFO opendrift.models.basemodel:2882: 2023-08-22 22:32:19.552469 - step 215 of 216 - 7465 active elements (0 deactivated)
10:55:59 DEBUG opendrift.models.basemodel:2888: 2535 elements scheduled.
10:55:59 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:55:59 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:59 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:55:59 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:59 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:55:59 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:59 DEBUG opendrift.models.basemodel:1253: Data needed for 7465 elements
10:55:59 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:55:59 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:55:59 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:55:59 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:55:59 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:55:59 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:55:59 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:55:59 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:55:59 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:59 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:55:59 DEBUG opendrift.models.basemodel:1253: Data needed for 7465 elements
10:55:59 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:55:59 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 22:00:00 (before)
2023-08-22 23:00:00 (after)
10:56:00 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:56:00 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:56:00 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:56:00 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:56:00 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:56:00 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:56:00 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x34x7) for time after (2023-08-22 23:00:00)
10:56:00 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 22:00:00) in space (linearNDFast)
10:56:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:56:00 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 23:00:00) in space (linearNDFast)
10:56:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5397 elements, expanding data 1
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 315 elements, expanding data 2
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5397 elements, expanding data 1
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 315 elements, expanding data 2
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5557 elements, expanding data 1
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1019 elements, expanding data 2
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 294 elements, expanding data 3
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5557 elements, expanding data 1
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1019 elements, expanding data 2
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 294 elements, expanding data 3
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5557 elements, expanding data 1
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1019 elements, expanding data 2
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 294 elements, expanding data 3
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5557 elements, expanding data 1
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1019 elements, expanding data 2
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 294 elements, expanding data 3
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5557 elements, expanding data 1
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1019 elements, expanding data 2
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 294 elements, expanding data 3
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5557 elements, expanding data 1
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1019 elements, expanding data 2
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 294 elements, expanding data 3
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5557 elements, expanding data 1
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1019 elements, expanding data 2
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 294 elements, expanding data 3
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5 elements, expanding data 4
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6487 elements, expanding data 1
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2975 elements, expanding data 2
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6487 elements, expanding data 1
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2975 elements, expanding data 2
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6487 elements, expanding data 1
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2975 elements, expanding data 2
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6487 elements, expanding data 1
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2975 elements, expanding data 2
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6487 elements, expanding data 1
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2975 elements, expanding data 2
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6487 elements, expanding data 1
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2975 elements, expanding data 2
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6487 elements, expanding data 1
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 2975 elements, expanding data 2
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5397 elements, expanding data 1
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 315 elements, expanding data 2
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5397 elements, expanding data 1
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 315 elements, expanding data 2
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5397 elements, expanding data 1
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 315 elements, expanding data 2
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5397 elements, expanding data 1
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 315 elements, expanding data 2
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5397 elements, expanding data 1
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 315 elements, expanding data 2
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5397 elements, expanding data 1
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 315 elements, expanding data 2
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5397 elements, expanding data 1
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 315 elements, expanding data 2
10:56:00 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 7 elements, expanding data 3
10:56:00 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 22:00:00, weight 0.46) and
after (2023-08-22 23:00:00, weight 0.54) in time
10:56:00 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.196769010582585 and -58.94495682548401 degrees.
10:56:00 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.196769010582585 and -58.94495682548401 degrees.
10:56:00 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:56:00 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:56:00 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:56:00 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:56:00 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:56:00 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:56:00 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.805067 (min) 1.12852 (max)
10:56:00 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.933382 (min) 0.877401 (max)
10:56:00 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000370522 (min) 0.000360703 (max)
10:56:00 DEBUG opendrift.models.basemodel:1524: x_wind: -7.81312 (min) 7.17756 (max)
10:56:00 DEBUG opendrift.models.basemodel:1524: y_wind: -3.04764 (min) 11.3791 (max)
10:56:00 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:56:00 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:56:00 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:56:00 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:56:00 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:56:00 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:56:00 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:56:00 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 44.4802 (max)
10:56:00 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:56:00 DEBUG opendrift.models.basemodel:1527: 7465 active elements
10:56:00 DEBUG opendrift.models.basemodel:1538: 59.09241210097568 <- latitude -> 59.19160708710382
10:56:00 DEBUG opendrift.models.basemodel:1543: 10.803241571917555 <- longitude -> 11.055053741737135
10:56:00 DEBUG opendrift.models.basemodel:1548: -30.50284508142275 <- z -> 0.0
10:56:00 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:56:00 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:56:00 DEBUG opendrift.models.physics_methods:940: min: 0.053512, mean: 3.844517, max: 10.016769
10:56:00 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.053512, mean: 3.844517, max: 10.016769
10:56:00 DEBUG opendrift.models.basemodel:813: 1531 elements hit coastline, moving back to water
10:56:00 DEBUG opendrift.models.basemodel:831: No elements hit seafloor.
10:56:00 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:56:00 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:56:00 DEBUG opendrift.models.physics_methods:741: Advecting 39 of 7465 elements above 0.100m with wind-sheared ocean current (0.002634 m/s - 0.174348 m/s)
10:56:00 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:56:00 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:56:00 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.1241572340608406
10:56:00 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:56:00 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:56:00 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:56:00 DEBUG opendrift.models.oceandrift:572: 923 elements penetrated seafloor, lifting up
10:56:00 DEBUG opendrift.models.oceandrift:590: 92 elements reached seafloor, set to bottom
10:56:00 DEBUG opendrift.models.basemodel:836: Lifting 92 elements to seafloor.
10:56:00 DEBUG opendrift.models.sedimentdrift:112: Settling 92 elements at seafloor
10:56:00 DEBUG opendrift.models.oceandrift:572: 694 elements penetrated seafloor, lifting up
10:56:00 DEBUG opendrift.models.oceandrift:590: 87 elements reached seafloor, set to bottom
10:56:00 DEBUG opendrift.models.basemodel:836: Lifting 87 elements to seafloor.
10:56:00 DEBUG opendrift.models.sedimentdrift:112: Settling 87 elements at seafloor
10:56:00 DEBUG opendrift.models.oceandrift:572: 635 elements penetrated seafloor, lifting up
10:56:00 DEBUG opendrift.models.oceandrift:590: 72 elements reached seafloor, set to bottom
10:56:00 DEBUG opendrift.models.basemodel:836: Lifting 72 elements to seafloor.
10:56:00 DEBUG opendrift.models.sedimentdrift:112: Settling 72 elements at seafloor
10:56:00 DEBUG opendrift.models.oceandrift:572: 660 elements penetrated seafloor, lifting up
10:56:00 DEBUG opendrift.models.oceandrift:590: 70 elements reached seafloor, set to bottom
10:56:00 DEBUG opendrift.models.basemodel:836: Lifting 70 elements to seafloor.
10:56:00 DEBUG opendrift.models.sedimentdrift:112: Settling 70 elements at seafloor
10:56:00 DEBUG opendrift.models.oceandrift:572: 638 elements penetrated seafloor, lifting up
10:56:00 DEBUG opendrift.models.oceandrift:590: 66 elements reached seafloor, set to bottom
10:56:00 DEBUG opendrift.models.basemodel:836: Lifting 66 elements to seafloor.
10:56:00 DEBUG opendrift.models.sedimentdrift:112: Settling 66 elements at seafloor
10:56:00 DEBUG opendrift.models.oceandrift:572: 655 elements penetrated seafloor, lifting up
10:56:00 DEBUG opendrift.models.oceandrift:590: 81 elements reached seafloor, set to bottom
10:56:00 DEBUG opendrift.models.basemodel:836: Lifting 81 elements to seafloor.
10:56:00 DEBUG opendrift.models.sedimentdrift:112: Settling 81 elements at seafloor
10:56:00 DEBUG opendrift.models.oceandrift:572: 595 elements penetrated seafloor, lifting up
10:56:00 DEBUG opendrift.models.oceandrift:590: 79 elements reached seafloor, set to bottom
10:56:00 DEBUG opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
10:56:00 DEBUG opendrift.models.sedimentdrift:112: Settling 79 elements at seafloor
10:56:00 DEBUG opendrift.models.oceandrift:572: 624 elements penetrated seafloor, lifting up
10:56:00 DEBUG opendrift.models.oceandrift:590: 89 elements reached seafloor, set to bottom
10:56:00 DEBUG opendrift.models.basemodel:836: Lifting 89 elements to seafloor.
10:56:00 DEBUG opendrift.models.sedimentdrift:112: Settling 89 elements at seafloor
10:56:00 DEBUG opendrift.models.oceandrift:572: 581 elements penetrated seafloor, lifting up
10:56:00 DEBUG opendrift.models.oceandrift:590: 54 elements reached seafloor, set to bottom
10:56:00 DEBUG opendrift.models.basemodel:836: Lifting 54 elements to seafloor.
10:56:00 DEBUG opendrift.models.sedimentdrift:112: Settling 54 elements at seafloor
10:56:00 DEBUG opendrift.models.oceandrift:572: 561 elements penetrated seafloor, lifting up
10:56:00 DEBUG opendrift.models.oceandrift:590: 72 elements reached seafloor, set to bottom
10:56:00 DEBUG opendrift.models.basemodel:836: Lifting 72 elements to seafloor.
10:56:00 DEBUG opendrift.models.sedimentdrift:112: Settling 72 elements at seafloor
10:56:00 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:56:00 DEBUG opendrift.models.basemodel:2945: 7465 active elements (0 deactivated)
10:56:00 DEBUG opendrift.models.basemodel:1658: to be seeded: 2535, already seeded 7465
10:56:00 DEBUG opendrift.models.basemodel:1676: Released 35 new elements.
10:56:00 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:56:00 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level']
10:56:00 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:56:00 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:56:00 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:56:00 DEBUG opendrift.models.basemodel:1253: Data needed for 7500 elements
10:56:00 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:56:00 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 22:00:00 (before)
2023-08-22 23:00:00 (after)
10:56:00 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 22:00:00) in space (linearNDFast)
10:56:00 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:56:00 DEBUG opendrift.readers.basereader.structured:350: No time interpolation needed - right on time.
10:56:00 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:56:00 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:56:00 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:56:00 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:56:00 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 45.5098 (max)
10:56:00 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:56:00 DEBUG opendrift.models.basemodel:1527: 7500 active elements
10:56:00 DEBUG opendrift.models.basemodel:1538: 59.092273362964875 <- latitude -> 59.190845247547045
10:56:00 DEBUG opendrift.models.basemodel:1543: 10.798239521730764 <- longitude -> 11.054535015665753
10:56:00 DEBUG opendrift.models.basemodel:1548: -30.802506824175495 <- z -> 0.0
10:56:00 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:56:00 DEBUG opendrift.models.basemodel:836: Lifting 514 elements to seafloor.
10:56:00 DEBUG opendrift.models.basemodel:2881: ======================================================================
10:56:00 INFO opendrift.models.basemodel:2882: 2023-08-22 22:42:19.552469 - step 216 of 216 - 7500 active elements (0 deactivated)
10:56:00 DEBUG opendrift.models.basemodel:2888: 2500 elements scheduled.
10:56:00 DEBUG opendrift.models.basemodel:2890: ======================================================================
10:56:00 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:56:00 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:56:00 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:56:00 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:56:00 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:56:00 DEBUG opendrift.models.basemodel:1253: Data needed for 7500 elements
10:56:00 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:56:00 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:56:00 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:56:00 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:56:00 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:56:00 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:56:00 DEBUG opendrift.models.basemodel:1231: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
10:56:00 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:56:00 DEBUG opendrift.models.basemodel:1236: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:56:00 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:56:00 DEBUG opendrift.models.basemodel:1253: Data needed for 7500 elements
10:56:00 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:56:00 DEBUG opendrift.readers.basereader.structured:184: Reader time:
2023-08-22 22:00:00 (before)
2023-08-22 23:00:00 (after)
10:56:01 DEBUG opendrift.readers.basereader.variables:583: Checking sea_floor_depth_below_sea_level for invalid values
10:56:01 DEBUG opendrift.readers.basereader.variables:583: Checking x_wind for invalid values
10:56:01 DEBUG opendrift.readers.basereader.variables:583: Checking y_wind for invalid values
10:56:01 DEBUG opendrift.readers.basereader.variables:583: Checking x_sea_water_velocity for invalid values
10:56:01 DEBUG opendrift.readers.basereader.variables:583: Checking y_sea_water_velocity for invalid values
10:56:01 DEBUG opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
10:56:01 DEBUG opendrift.readers.basereader.structured:275: Fetched env-block (size 28x34x7) for time after (2023-08-22 23:00:00)
10:56:01 DEBUG opendrift.readers.basereader.structured:296: Interpolating before (2023-08-22 22:00:00) in space (linearNDFast)
10:56:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:56:01 DEBUG opendrift.readers.basereader.structured:302: Interpolating after (2023-08-22 23:00:00) in space (linearNDFast)
10:56:01 DEBUG opendrift.readers.interpolation.structured:80: Initialising interpolator.
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5447 elements, expanding data 1
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 2
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5447 elements, expanding data 1
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 2
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5605 elements, expanding data 1
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1037 elements, expanding data 2
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 303 elements, expanding data 3
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5605 elements, expanding data 1
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1037 elements, expanding data 2
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 303 elements, expanding data 3
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5605 elements, expanding data 1
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1037 elements, expanding data 2
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 303 elements, expanding data 3
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5605 elements, expanding data 1
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1037 elements, expanding data 2
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 303 elements, expanding data 3
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5605 elements, expanding data 1
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1037 elements, expanding data 2
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 303 elements, expanding data 3
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5605 elements, expanding data 1
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1037 elements, expanding data 2
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 303 elements, expanding data 3
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5605 elements, expanding data 1
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 1037 elements, expanding data 2
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 303 elements, expanding data 3
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6 elements, expanding data 4
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6524 elements, expanding data 1
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3017 elements, expanding data 2
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6524 elements, expanding data 1
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3017 elements, expanding data 2
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6524 elements, expanding data 1
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3017 elements, expanding data 2
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6524 elements, expanding data 1
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3017 elements, expanding data 2
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6524 elements, expanding data 1
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3017 elements, expanding data 2
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6524 elements, expanding data 1
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3017 elements, expanding data 2
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 6524 elements, expanding data 1
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 3017 elements, expanding data 2
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5447 elements, expanding data 1
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 2
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5447 elements, expanding data 1
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 2
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5447 elements, expanding data 1
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 2
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5447 elements, expanding data 1
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 2
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5447 elements, expanding data 1
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 2
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5447 elements, expanding data 1
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 2
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 5447 elements, expanding data 1
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 331 elements, expanding data 2
10:56:01 DEBUG opendrift:135: Linear2DInterpolator informational: NaN values for 8 elements, expanding data 3
10:56:01 DEBUG opendrift.readers.basereader.structured:317: Interpolating before (2023-08-22 22:00:00, weight 0.29) and
after (2023-08-22 23:00:00, weight 0.71) in time
10:56:01 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.201771053724705 and -58.945475540186166 degrees.
10:56:01 DEBUG opendrift.readers.basereader.variables:87: Rotating vectors between -59.201771053724705 and -58.945475540186166 degrees.
10:56:01 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:56:01 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:56:01 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:56:01 DEBUG opendrift.models.basemodel:1496: Adding uncertainty for current: 0.2 m/s
10:56:01 DEBUG opendrift.models.basemodel:1512: Adding uncertainty for wind: 2.0 m/s
10:56:01 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:56:01 DEBUG opendrift.models.basemodel:1524: x_sea_water_velocity: -0.733721 (min) 1.10612 (max)
10:56:01 DEBUG opendrift.models.basemodel:1524: y_sea_water_velocity: -0.960383 (min) 0.836731 (max)
10:56:01 DEBUG opendrift.models.basemodel:1524: upward_sea_water_velocity: -0.000373537 (min) 0.000413423 (max)
10:56:01 DEBUG opendrift.models.basemodel:1524: x_wind: -7.65616 (min) 7.43503 (max)
10:56:01 DEBUG opendrift.models.basemodel:1524: y_wind: -3.48621 (min) 11.4264 (max)
10:56:01 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:56:01 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:56:01 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:56:01 DEBUG opendrift.models.basemodel:1524: sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:56:01 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:56:01 DEBUG opendrift.models.basemodel:1524: ocean_vertical_diffusivity: 0.02 (min) 0.02 (max)
10:56:01 DEBUG opendrift.models.basemodel:1524: ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:56:01 DEBUG opendrift.models.basemodel:1524: sea_floor_depth_below_sea_level: 5 (min) 45.5098 (max)
10:56:01 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:56:01 DEBUG opendrift.models.basemodel:1527: 7500 active elements
10:56:01 DEBUG opendrift.models.basemodel:1538: 59.092273362964875 <- latitude -> 59.190845247547045
10:56:01 DEBUG opendrift.models.basemodel:1543: 10.798239521730764 <- longitude -> 11.054535015665753
10:56:01 DEBUG opendrift.models.basemodel:1548: -30.802506824175495 <- z -> 0.0
10:56:01 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:56:01 DEBUG opendrift.models.physics_methods:930: Calculating wave period Tm02 from wind
10:56:01 DEBUG opendrift.models.physics_methods:940: min: 0.013071, mean: 3.858730, max: 9.849903
10:56:01 DEBUG opendrift.models.physics_methods:880: Calculating wave period from wind, min: 0.013071, mean: 3.858730, max: 9.849903
10:56:01 DEBUG opendrift.models.basemodel:813: 1519 elements hit coastline, moving back to water
10:56:01 DEBUG opendrift.models.basemodel:836: Lifting 197 elements to seafloor.
10:56:01 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:56:01 DEBUG opendrift.models.basemodel:2930: Calling SedimentDrift.update()
10:56:01 DEBUG opendrift.models.physics_methods:741: Advecting 45 of 7500 elements above 0.100m with wind-sheared ocean current (0.002289 m/s - 0.158807 m/s)
10:56:01 DEBUG opendrift.models.physics_methods:759: No Stokes drift velocity available
10:56:01 DEBUG opendrift.models.oceandrift:480: Using functional expression for diffusivity
10:56:01 DEBUG opendrift.models.oceandrift:489: Diffusivities are in range 0.0 to 0.12005520244176864
10:56:01 DEBUG opendrift.models.oceandrift:508: TSprofiles deactivated for vertical mixing
10:56:01 DEBUG opendrift.models.oceandrift:523: Vertical mixing module:windspeed_Large1994
10:56:01 DEBUG opendrift.models.oceandrift:526: Turbulent diffusion with random walk scheme using 10 fast time steps of dt=60s
10:56:01 DEBUG opendrift.models.oceandrift:572: 918 elements penetrated seafloor, lifting up
10:56:01 DEBUG opendrift.models.oceandrift:590: 82 elements reached seafloor, set to bottom
10:56:01 DEBUG opendrift.models.basemodel:836: Lifting 82 elements to seafloor.
10:56:01 DEBUG opendrift.models.sedimentdrift:112: Settling 82 elements at seafloor
10:56:01 DEBUG opendrift.models.oceandrift:572: 722 elements penetrated seafloor, lifting up
10:56:01 DEBUG opendrift.models.oceandrift:590: 106 elements reached seafloor, set to bottom
10:56:01 DEBUG opendrift.models.basemodel:836: Lifting 106 elements to seafloor.
10:56:01 DEBUG opendrift.models.sedimentdrift:112: Settling 106 elements at seafloor
10:56:01 DEBUG opendrift.models.oceandrift:572: 713 elements penetrated seafloor, lifting up
10:56:01 DEBUG opendrift.models.oceandrift:590: 80 elements reached seafloor, set to bottom
10:56:01 DEBUG opendrift.models.basemodel:836: Lifting 80 elements to seafloor.
10:56:01 DEBUG opendrift.models.sedimentdrift:112: Settling 80 elements at seafloor
10:56:01 DEBUG opendrift.models.oceandrift:572: 656 elements penetrated seafloor, lifting up
10:56:01 DEBUG opendrift.models.oceandrift:590: 89 elements reached seafloor, set to bottom
10:56:01 DEBUG opendrift.models.basemodel:836: Lifting 89 elements to seafloor.
10:56:01 DEBUG opendrift.models.sedimentdrift:112: Settling 89 elements at seafloor
10:56:01 DEBUG opendrift.models.oceandrift:572: 646 elements penetrated seafloor, lifting up
10:56:01 DEBUG opendrift.models.oceandrift:590: 79 elements reached seafloor, set to bottom
10:56:01 DEBUG opendrift.models.basemodel:836: Lifting 79 elements to seafloor.
10:56:01 DEBUG opendrift.models.sedimentdrift:112: Settling 79 elements at seafloor
10:56:01 DEBUG opendrift.models.oceandrift:572: 643 elements penetrated seafloor, lifting up
10:56:01 DEBUG opendrift.models.oceandrift:590: 46 elements reached seafloor, set to bottom
10:56:01 DEBUG opendrift.models.basemodel:836: Lifting 46 elements to seafloor.
10:56:01 DEBUG opendrift.models.sedimentdrift:112: Settling 46 elements at seafloor
10:56:01 DEBUG opendrift.models.oceandrift:572: 594 elements penetrated seafloor, lifting up
10:56:01 DEBUG opendrift.models.oceandrift:590: 81 elements reached seafloor, set to bottom
10:56:01 DEBUG opendrift.models.basemodel:836: Lifting 81 elements to seafloor.
10:56:01 DEBUG opendrift.models.sedimentdrift:112: Settling 81 elements at seafloor
10:56:01 DEBUG opendrift.models.oceandrift:572: 595 elements penetrated seafloor, lifting up
10:56:01 DEBUG opendrift.models.oceandrift:590: 73 elements reached seafloor, set to bottom
10:56:01 DEBUG opendrift.models.basemodel:836: Lifting 73 elements to seafloor.
10:56:01 DEBUG opendrift.models.sedimentdrift:112: Settling 73 elements at seafloor
10:56:01 DEBUG opendrift.models.oceandrift:572: 602 elements penetrated seafloor, lifting up
10:56:01 DEBUG opendrift.models.oceandrift:590: 64 elements reached seafloor, set to bottom
10:56:01 DEBUG opendrift.models.basemodel:836: Lifting 64 elements to seafloor.
10:56:01 DEBUG opendrift.models.sedimentdrift:112: Settling 64 elements at seafloor
10:56:01 DEBUG opendrift.models.oceandrift:572: 579 elements penetrated seafloor, lifting up
10:56:01 DEBUG opendrift.models.oceandrift:590: 77 elements reached seafloor, set to bottom
10:56:01 DEBUG opendrift.models.basemodel:836: Lifting 77 elements to seafloor.
10:56:01 DEBUG opendrift.models.sedimentdrift:112: Settling 77 elements at seafloor
10:56:01 DEBUG opendrift.models.basemodel:2420: Horizontal diffusivity is 0, no random walk.
10:56:01 DEBUG opendrift.models.basemodel:2945: 7500 active elements (0 deactivated)
10:56:01 DEBUG opendrift.models.basemodel:2974: Cleaning up
10:56:01 DEBUG opendrift.models.basemodel:1230: ----------------------------------------
10:56:01 DEBUG opendrift.models.basemodel:1231: Variable group ['land_binary_mask']
10:56:01 DEBUG opendrift.models.basemodel:1232: ----------------------------------------
10:56:01 DEBUG opendrift.models.basemodel:1236: Calling reader global_landmask
10:56:01 DEBUG opendrift.models.basemodel:1237: ----------------------------------------
10:56:01 DEBUG opendrift.models.basemodel:1253: Data needed for 7500 elements
10:56:01 DEBUG opendrift.readers.basereader.variables:702: Fetching variables from global_landmask
10:56:01 DEBUG opendrift.readers.basereader.continuous:37: Fetched env-before
10:56:01 DEBUG opendrift.readers.basereader.variables:583: Checking land_binary_mask for invalid values
10:56:01 DEBUG opendrift.readers.basereader.variables:738: Reader projection is latlon - rotation of vectors is not needed.
10:56:01 DEBUG opendrift.models.basemodel:1384: Obtained data for all elements.
10:56:01 DEBUG opendrift.models.basemodel:1397: ---------------------------------------
10:56:01 DEBUG opendrift.models.basemodel:1398: Finished processing all variable groups
10:56:01 DEBUG opendrift.models.basemodel:1522: ------------ SUMMARY -------------
10:56:01 DEBUG opendrift.models.basemodel:1524: land_binary_mask: 0 (min) 1 (max)
10:56:01 DEBUG opendrift.models.basemodel:1526: ---------------------------------
10:56:01 DEBUG opendrift.models.basemodel:1527: 7500 active elements
10:56:01 DEBUG opendrift.models.basemodel:1538: 59.09190150803295 <- latitude -> 59.19032413144984
10:56:01 DEBUG opendrift.models.basemodel:1543: 10.79907998549928 <- longitude -> 11.056951181331355
10:56:01 DEBUG opendrift.models.basemodel:1548: -26.718330146232876 <- z -> -0.06403524325648857
10:56:01 DEBUG opendrift.models.basemodel:1549: ---------------------------------
10:56:01 DEBUG opendrift.models.basemodel:813: 1580 elements hit coastline, moving back to water
10:56:01 DEBUG opendrift.models.basemodel:2466: No elements to deactivate
10:56:01 INFO opendrift.models.basemodel:3014: Removing 2500 unseeded elements from history array
Plotting the depth vs time
o.plot_property('z')

Animate sediment particles colored by their depth
o.animation(color='z', fast=False, buffer=.01)
#o.animation(color='moving', fast=False, buffer=.01, colorbar=False, legend=['Sedimented', 'Moving'])
10:56:08 DEBUG opendrift.models.basemodel:3180: Setting up map: corners=None, fast=False, lscale=None
10:56:08 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:57:48 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:57:50 DEBUG opendrift.models.basemodel:3855: Saving animation..
10:57:50 INFO opendrift.models.basemodel:5350: Saving animation to /root/project/docs/source/gallery/animations/example_sediments_0.gif...
10:57:50 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:57:52 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:57:55 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:57:57 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:57:59 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:58:00 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:58:03 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:58:04 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:58:06 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:58:08 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:58:10 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:58:12 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:58:14 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:58:15 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:58:17 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:58:19 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:58:21 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:58:22 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:58:25 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:58:26 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:58:28 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:58:30 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:58:32 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:58:33 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:58:35 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:58:37 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:58:39 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:58:40 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:58:42 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:58:43 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:58:45 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:58:47 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:58:49 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:58:50 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:58:52 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:58:54 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:58:56 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:58:58 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:59:00 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:59:02 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:59:04 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:59:05 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:59:07 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:59:09 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:59:11 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:59:12 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:59:14 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:59:16 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:59:18 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:59:20 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:59:22 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:59:23 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:59:25 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:59:27 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:59:28 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:59:30 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:59:32 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:59:33 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:59:35 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:59:37 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:59:39 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:59:41 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:59:43 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:59:45 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:59:47 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:59:49 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:59:51 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:59:53 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:59:56 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:59:57 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
10:59:59 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:00:01 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:00:03 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:00:05 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:00:07 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:00:09 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:00:11 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:00:12 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:00:15 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:00:16 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:00:18 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:00:20 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:00:22 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:00:23 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:00:25 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:00:27 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:00:30 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:00:31 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:00:33 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:00:35 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:00:37 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:00:38 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:00:40 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:00:42 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:00:44 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:00:45 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:00:47 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:00:49 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:00:50 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:00:52 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:00:54 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:00:56 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:00:58 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:00:59 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:01:01 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:01:03 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:01:05 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:01:07 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:01:09 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:01:11 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:01:13 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:01:15 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:01:17 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:01:18 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:01:20 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:01:22 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:01:24 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:01:25 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:01:27 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:01:29 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:01:31 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:01:32 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:01:34 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:01:36 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:01:38 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:01:39 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:01:41 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:01:43 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:01:45 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:01:46 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:01:48 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:01:50 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:01:52 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:01:53 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:01:55 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:01:57 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:01:59 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:02:01 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:02:03 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:02:04 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:02:06 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:02:08 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:02:11 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:02:12 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:02:15 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:02:16 DEBUG opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: f, extent: (10.779079895019533, 11.078486938476562, 59.080950012207026, 59.198720703125005)..
11:02:20 DEBUG opendrift.models.basemodel:5388: MPLBACKEND = agg
11:02:20 DEBUG opendrift.models.basemodel:5389: DISPLAY = None
11:02:20 DEBUG opendrift.models.basemodel:5390: Time to save animation: 0:04:29.765618
11:02:20 INFO opendrift.models.basemodel:3848: Time to make animation: 0:06:12.218950
Total running time of the script: (10 minutes 1.272 seconds)